diff options
author | Desmond Kyeremeh <elDekyfin@gmail.com> | 2021-07-02 15:18:00 +0000 |
---|---|---|
committer | Desmond Kyeremeh <elDekyfin@gmail.com> | 2021-07-02 15:18:00 +0000 |
commit | 52f565bcb5e14b77757676013d1328ead92e13fa (patch) | |
tree | 0a52d564c7be4533fec878df451298e27541babf /modern/src/settings/OptionsLayout/index.js | |
parent | 191ec6d655edd4f77ba40f3a42ae277ea769cc0a (diff) | |
download | trackermap-web-52f565bcb5e14b77757676013d1328ead92e13fa.tar.gz trackermap-web-52f565bcb5e14b77757676013d1328ead92e13fa.tar.bz2 trackermap-web-52f565bcb5e14b77757676013d1328ead92e13fa.zip |
Account Route
Diffstat (limited to 'modern/src/settings/OptionsLayout/index.js')
-rw-r--r-- | modern/src/settings/OptionsLayout/index.js | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/modern/src/settings/OptionsLayout/index.js b/modern/src/settings/OptionsLayout/index.js index f6f1e4b8..4bcb380e 100644 --- a/modern/src/settings/OptionsLayout/index.js +++ b/modern/src/settings/OptionsLayout/index.js @@ -1,5 +1,5 @@ import React, { useState, useEffect } from 'react'; -import { useHistory, useLocation } from 'react-router-dom'; +import { useLocation } from 'react-router-dom'; import { Typography, Divider, @@ -49,14 +49,13 @@ const useStyles = makeStyles(theme => ({ const OptionsLayout = ({ children }) => { const classes = useStyles(); - const history = useHistory(); const location = useLocation(); const [openDrawer, setOpenDrawer] = useState(false); const [optionTitle, setOptionTitle] = useState(); const routes = useRoutes(); useEffect(() => { - const activeRoute = routes.find(route => route.href === location.pathname); + const activeRoute = routes.find(route => location.pathname.match(route.match)); setOptionTitle(activeRoute.name); }, [location, routes]); @@ -82,7 +81,7 @@ const OptionsLayout = ({ children }) => { classes={{ root: classes.drawerContainer, paper: classes.drawer }} > <div className={classes.drawerHeader}> - <IconButton onClick={() => history.push('/')}> + <IconButton component="a" href="/"> <ArrowBackIcon /> </IconButton> <Typography variant="h6" color="inherit" noWrap> |