Skip to content

Commit

Permalink
Fix sidebar initial state
Browse files Browse the repository at this point in the history
  • Loading branch information
nickbar01234 authored and johnny-t06 committed Mar 7, 2024
1 parent 7b58077 commit 391b9d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Sidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ const _Sidebar = ({ buttons }: ISideBar) => {
};

const Sidebar = (props: ISideBar) => {
const [sidebarVisible, setSidebarVisible] = React.useState(true);
const [sidebarVisible, setSidebarVisible] = React.useState(false);

return (
<>
Expand Down

0 comments on commit 391b9d4

Please sign in to comment.