aboutsummaryrefslogtreecommitdiff
path: root/modern/src/GeofencesList.js
diff options
context:
space:
mode:
Diffstat (limited to 'modern/src/GeofencesList.js')
-rw-r--r--modern/src/GeofencesList.js12
1 files changed, 5 insertions, 7 deletions
diff --git a/modern/src/GeofencesList.js b/modern/src/GeofencesList.js
index 2988bef..572ac5b 100644
--- a/modern/src/GeofencesList.js
+++ b/modern/src/GeofencesList.js
@@ -28,7 +28,7 @@ const GeofenceView = ({ onMenuClick }) => {
const classes = useStyles();
const dispatch = useDispatch();
- const items = useSelector(state => Object.values(state.geofences.items));
+ const items = useSelector((state) => Object.values(state.geofences.items));
return (
<List className={classes.list}>
@@ -47,12 +47,10 @@ const GeofenceView = ({ onMenuClick }) => {
))}
</List>
);
-}
+};
-const GeofencesList = () => {
- return (
- <EditCollectionView content={GeofenceView} editPath="/geofence" endpoint="geofences" disableAdd />
- );
-}
+const GeofencesList = () => (
+ <EditCollectionView content={GeofenceView} editPath="/geofence" endpoint="geofences" disableAdd />
+);
export default GeofencesList;