keep sidebar closed by default on landing pages.

This commit is contained in:
Hossein Mehrabi 2022-10-10 19:31:27 +03:30
parent 0400182d4c
commit b64a5f1d30
1 changed files with 1 additions and 1 deletions

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}>