aboutsummaryrefslogtreecommitdiff
path: root/modern/src
diff options
context:
space:
mode:
authorAnton Tananaev <anton@traccar.org>2022-05-01 20:30:08 -0700
committerAnton Tananaev <anton@traccar.org>2022-05-01 20:30:08 -0700
commit0d6acd661502b5f155f2c79f32fee17b59cb6cdd (patch)
tree7a06f58972cba33daa14513f36fc1812bc55858e /modern/src
parentd3bd766cbc81f51c9b13b82d0ca92ae819561ea8 (diff)
downloadtrackermap-web-0d6acd661502b5f155f2c79f32fee17b59cb6cdd.tar.gz
trackermap-web-0d6acd661502b5f155f2c79f32fee17b59cb6cdd.tar.bz2
trackermap-web-0d6acd661502b5f155f2c79f32fee17b59cb6cdd.zip
Fix style issues
Diffstat (limited to 'modern/src')
-rw-r--r--modern/src/App.js2
-rw-r--r--modern/src/StartPage.js2
-rw-r--r--modern/src/components/BottomMenu.js11
3 files changed, 7 insertions, 8 deletions
diff --git a/modern/src/App.js b/modern/src/App.js
index a4b66ea1..5455058a 100644
--- a/modern/src/App.js
+++ b/modern/src/App.js
@@ -50,7 +50,7 @@ import EventPage from './EventPage';
import PreferencesPage from './settings/PreferencesPage';
import BottomMenu from './components/BottomMenu';
-const useStyles = makeStyles((theme) => ({
+const useStyles = makeStyles(() => ({
root: {
display: 'flex',
flexDirection: 'column',
diff --git a/modern/src/StartPage.js b/modern/src/StartPage.js
index 1e672c2b..fcfaccca 100644
--- a/modern/src/StartPage.js
+++ b/modern/src/StartPage.js
@@ -59,7 +59,7 @@ const StartPage = ({ children }) => {
<svg height="64" width="240">
<use xlinkHref="/logo.svg#img" />
</svg>
- )}
+ )}
</div>
<Paper className={classes.paper}>
<form className={classes.form}>
diff --git a/modern/src/components/BottomMenu.js b/modern/src/components/BottomMenu.js
index 672c969a..087d241d 100644
--- a/modern/src/components/BottomMenu.js
+++ b/modern/src/components/BottomMenu.js
@@ -26,16 +26,15 @@ const BottomMenu = () => {
const currentSelection = () => {
if (location.pathname.startsWith('/user')) {
return 3;
- } else if (location.pathname.startsWith('/settings')) {
+ } if (location.pathname.startsWith('/settings')) {
return 2;
- } else if (location.pathname.startsWith('/reports')) {
+ } if (location.pathname.startsWith('/reports')) {
return 1;
- } else if (location.pathname === '/') {
+ } if (location.pathname === '/') {
return 0;
- } else {
- return null;
}
- }
+ return null;
+ };
const handleSelection = (event, value) => {
switch (value) {