diff options
-rw-r--r-- | src/components/NavBar.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/NavBar.tsx b/src/components/NavBar.tsx index 677828b..52e8e6c 100644 --- a/src/components/NavBar.tsx +++ b/src/components/NavBar.tsx @@ -6,7 +6,7 @@ import Desktop from './Desktop'; import Mobile from './Mobile'; function NavBar() { - const isMobile = useMediaQuery('(max-width: 1000px)'); + const isMobile = useMediaQuery('(max-width: 768px)'); return ( <AppBar position="relative"> |