Skip to content

Commit 5b3ddeb

Browse files
fix: set sidebar open on true by default
1 parent 77c5326 commit 5b3ddeb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/context/LayoutContext.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ function layoutReducer(state, action) {
1515

1616
function LayoutProvider({ children }) {
1717
var [state, dispatch] = React.useReducer(layoutReducer, {
18-
isSidebarOpened: false,
18+
isSidebarOpened: true,
1919
});
2020
return (
2121
<LayoutStateContext.Provider value={state}>

0 commit comments

Comments
 (0)