diff --git a/apps/client/src/components/layouts/global/app-header.tsx b/apps/client/src/components/layouts/global/app-header.tsx index 96b0a75d..bf1add95 100644 --- a/apps/client/src/components/layouts/global/app-header.tsx +++ b/apps/client/src/components/layouts/global/app-header.tsx @@ -53,7 +53,13 @@ export function AppHeader() { aria-label={t("Sidebar toggle")} opened={mobileOpened} onClick={toggleMobile} - hiddenFrom="sm" + // Must match the AppShell navbar breakpoint (md). The navbar + // collapses to the MOBILE drawer below md, so the mobile toggle + // (which flips mobileOpened) must be the one visible across the + // whole md navbar change). + hiddenFrom="md" size="sm" /> @@ -63,7 +69,7 @@ export function AppHeader() { aria-label={t("Sidebar toggle")} opened={desktopOpened} onClick={toggleDesktop} - visibleFrom="sm" + visibleFrom="md" size="sm" />