diff --git a/packages/frontend/src/components/shared/Sidebar/Sidebar.tsx b/packages/frontend/src/components/shared/Sidebar/Sidebar.tsx index 8493cd1e..e6ea17c6 100644 --- a/packages/frontend/src/components/shared/Sidebar/Sidebar.tsx +++ b/packages/frontend/src/components/shared/Sidebar/Sidebar.tsx @@ -34,7 +34,7 @@ export const Sidebar = ({ mobileOpen }: SidebarProps) => { const navigate = useNavigate(); const client = useGQLClient(); const { disconnect } = useDisconnect(); - const isDesktop = useMediaQuery('(min-width: 1024px)'); + const isDesktop = useMediaQuery('(min-width: 960px)'); const [user, setUser] = useState(); diff --git a/packages/frontend/src/pages/org-slug/layout.tsx b/packages/frontend/src/pages/org-slug/layout.tsx index ece5123a..19515ea7 100644 --- a/packages/frontend/src/pages/org-slug/layout.tsx +++ b/packages/frontend/src/pages/org-slug/layout.tsx @@ -23,7 +23,7 @@ export const DashboardLayout = ({ ...props }: DashboardLayoutProps) => { const { orgSlug } = useParams(); - const isDesktop = useMediaQuery('(min-width: 1024px)'); + const isDesktop = useMediaQuery('(min-width: 960px)'); const [isSidebarOpen, setIsSidebarOpen] = useState(false); const [isSearchOpen, setIsSearchOpen] = useState(false);