aboutsummaryrefslogtreecommitdiff
path: root/modern/src/other/GeofencesPage.js
diff options
context:
space:
mode:
Diffstat (limited to 'modern/src/other/GeofencesPage.js')
-rw-r--r--modern/src/other/GeofencesPage.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/modern/src/other/GeofencesPage.js b/modern/src/other/GeofencesPage.js
index 900571e1..1e866de6 100644
--- a/modern/src/other/GeofencesPage.js
+++ b/modern/src/other/GeofencesPage.js
@@ -8,8 +8,8 @@ import ContainerDimensions from 'react-container-dimensions';
import ArrowBackIcon from '@material-ui/icons/ArrowBack';
import { useHistory } from 'react-router-dom';
import Map from '../map/core/Map';
-import CurrentLocationMap from '../map/CurrentLocationMap';
-import GeofenceEditMap from '../map/GeofenceEditMap';
+import MapCurrentLocation from '../map/MapCurrentLocation';
+import MapGeofenceEdit from '../map/MapGeofenceEdit';
import GeofencesList from './GeofencesList';
import { useTranslation } from '../common/components/LocalizationProvider';
import dimensions from '../common/theme/dimensions';
@@ -79,8 +79,8 @@ const GeofencesPage = () => {
<div className={classes.mapContainer}>
<ContainerDimensions>
<Map>
- <CurrentLocationMap />
- <GeofenceEditMap />
+ <MapCurrentLocation />
+ <MapGeofenceEdit />
</Map>
</ContainerDimensions>
</div>