diff options
Diffstat (limited to 'modern/src/components')
-rw-r--r-- | modern/src/components/NavBar.js | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/modern/src/components/NavBar.js b/modern/src/components/NavBar.js index 93e79bbb..83dcd6e0 100644 --- a/modern/src/components/NavBar.js +++ b/modern/src/components/NavBar.js @@ -7,12 +7,7 @@ import MenuIcon from '@material-ui/icons/Menu'; const Navbar = ({ setOpenDrawer, title }) => ( <AppBar position="fixed" color="inherit"> <Toolbar> - <IconButton - color="inherit" - aria-label="open drawer" - edge="start" - onClick={() => setOpenDrawer(true)} - > + <IconButton color="inherit" edge="start" onClick={() => setOpenDrawer(true)}> <MenuIcon /> </IconButton> <Typography variant="h6" noWrap> |