aboutsummaryrefslogtreecommitdiff
path: root/modern
diff options
context:
space:
mode:
authorAnton Tananaev <anton@traccar.org>2022-05-01 16:48:16 -0700
committerAnton Tananaev <anton@traccar.org>2022-05-01 16:48:16 -0700
commit1c3d9fdb1cf1ac2d44c0136291b6ec2859656e53 (patch)
treeeab68bb24c2caa9f817f29a59c069f036a25025f /modern
parent0c02b9cba4d2482039175f1d96a5f0f9bc4d0684 (diff)
downloadtrackermap-web-1c3d9fdb1cf1ac2d44c0136291b6ec2859656e53.tar.gz
trackermap-web-1c3d9fdb1cf1ac2d44c0136291b6ec2859656e53.tar.bz2
trackermap-web-1c3d9fdb1cf1ac2d44c0136291b6ec2859656e53.zip
Fix lint issues
Diffstat (limited to 'modern')
-rw-r--r--modern/src/components/BottomMenu.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/modern/src/components/BottomMenu.js b/modern/src/components/BottomMenu.js
index eaa0671a..c6bf66e6 100644
--- a/modern/src/components/BottomMenu.js
+++ b/modern/src/components/BottomMenu.js
@@ -67,9 +67,9 @@ const BottomMenu = () => {
<BottomNavigationAction label={t('settingsTitle')} icon={<SettingsIcon />} />
<BottomNavigationAction label={t('settingsUser')} icon={<PersonIcon />} />
</BottomNavigation>
- <Menu anchorEl={anchorEl} keepMounted open={Boolean(anchorEl)} onClose={() => setAnchorEl(null)} >
+ <Menu anchorEl={anchorEl} keepMounted open={Boolean(anchorEl)} onClose={() => setAnchorEl(null)}>
<MenuItem onClick={() => history.push(`/user/${userId}`)}>
- <Typography color="textPrimary">{t('settingsUser')}</Typography>
+ <Typography color="textPrimary">{t('settingsUser')}</Typography>
</MenuItem>
<MenuItem onClick={handleLogout}>
<Typography color="error">{t('loginLogout')}</Typography>