diff options
Diffstat (limited to 'modern/src/components')
-rw-r--r-- | modern/src/components/BottomMenu.js | 11 |
1 files changed, 5 insertions, 6 deletions
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) { |