Skip to content

Commit

Permalink
refactor(frontend): Start app with sidebar closed
Browse files Browse the repository at this point in the history
  • Loading branch information
maikbasel committed Jul 27, 2024
1 parent e581a5f commit 07a6183
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/stores/use-sidebar-store.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ interface SidebarStore {
}

export const useSidebarStore = create<SidebarStore>((set) => ({
isOpen: true,
isOpen: false,
toggle: () => set((state) => ({ isOpen: !state.isOpen })),
}));

0 comments on commit 07a6183

Please sign in to comment.