diff --git a/packages/web/pages/l/[section].tsx b/packages/web/pages/l/[section].tsx index 9a0b96807..43c8187c0 100644 --- a/packages/web/pages/l/[section].tsx +++ b/packages/web/pages/l/[section].tsx @@ -19,9 +19,9 @@ export default function Home(): JSX.Element { usePersistedState({ key: 'nav-show-menu', isSessionStorage: false, - initialValue: true, + initialValue: false, defaultEvaluator: () => { - return !isTouchScreenDevice() + return window.innerWidth > 1000 }, })