aboutsummaryrefslogtreecommitdiff
path: root/modern/src/settings/OptionsLayout/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'modern/src/settings/OptionsLayout/index.js')
-rw-r--r--modern/src/settings/OptionsLayout/index.js5
1 files changed, 1 insertions, 4 deletions
diff --git a/modern/src/settings/OptionsLayout/index.js b/modern/src/settings/OptionsLayout/index.js
index 34721680..4a42e583 100644
--- a/modern/src/settings/OptionsLayout/index.js
+++ b/modern/src/settings/OptionsLayout/index.js
@@ -7,11 +7,9 @@ import {
makeStyles,
IconButton,
Hidden,
- useTheme,
} from '@material-ui/core';
import ArrowBackIcon from '@material-ui/icons/ArrowBack';
-import ArrowForwardIcon from '@material-ui/icons/ArrowForward';
import SideNav from '../../components/SideNav';
import NavBar from '../../components/NavBar';
@@ -58,7 +56,6 @@ const OptionsLayout = ({ children }) => {
const [openDrawer, setOpenDrawer] = useState(false);
const [optionTitle, setOptionTitle] = useState();
const routes = useRoutes();
- const theme = useTheme();
useEffect(() => {
const activeRoute = routes.find(
@@ -90,7 +87,7 @@ const OptionsLayout = ({ children }) => {
>
<div className={classes.drawerHeader}>
<IconButton component="a" href="/">
- {theme.direction === 'rtl' ? <ArrowForwardIcon /> : <ArrowBackIcon />}
+ <ArrowBackIcon />
</IconButton>
<Typography variant="h6" color="inherit" noWrap>
{t('settingsTitle')}