diff options
author | Jamie Guthrie <jamie.guthrie@gmail.com> | 2023-08-17 13:29:56 +0200 |
---|---|---|
committer | Jamie Guthrie <jamie.guthrie@gmail.com> | 2023-08-17 13:29:56 +0200 |
commit | 3ea2579e679624f0fe3b8b31dc371a7baebda1fc (patch) | |
tree | a6286386aea2a3bbf3a497e02f76b1b6b39fea21 /modern/src/other | |
parent | bf4a9e5c499c9eee9f8b63dbb6733e09e3090fd0 (diff) | |
download | trackermap-web-3ea2579e679624f0fe3b8b31dc371a7baebda1fc.tar.gz trackermap-web-3ea2579e679624f0fe3b8b31dc371a7baebda1fc.tar.bz2 trackermap-web-3ea2579e679624f0fe3b8b31dc371a7baebda1fc.zip |
Create DelayedTooltip component
Diffstat (limited to 'modern/src/other')
-rw-r--r-- | modern/src/other/GeofencesPage.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modern/src/other/GeofencesPage.js b/modern/src/other/GeofencesPage.js index 37875a67..fcc7153d 100644 --- a/modern/src/other/GeofencesPage.js +++ b/modern/src/other/GeofencesPage.js @@ -118,7 +118,7 @@ const GeofencesPage = () => { <label htmlFor="upload-gpx"> <input accept=".gpx" id="upload-gpx" type="file" className={classes.fileInput} onChange={handleFile} /> <IconButton edge="end" component="span" onClick={() => {}}> - <Tooltip title={t('sharedUploadGeofence')} enterDelay={process.env.REACT_APP_TOOLTIP_DELAY} enterNextDelay={process.env.REACT_APP_TOOLTIP_DELAY}> + <Tooltip title={t('sharedUploadGeofence')}> <UploadFileIcon /> </Tooltip> </IconButton> |