keep sidebar closed by default on landing pages.

This commit is contained in:
Hossein Mehrabi
2022-10-10 19:32:06 +03:30
parent 0400182d4c
commit b64a5f1d30
+1 -1
View File
@@ -6,7 +6,7 @@ import './styles.scss'
export default function LayoutWrapper(props) {
const isIndexPage = useIsVersionIndexPage()
const store = globalStore.useCreateStore({ hiddenSidebar: false })
const store = globalStore.useCreateStore({ hiddenSidebar: isIndexPage })
return (
<globalStore.Provider store={store}>