Skip to content

Commit

Permalink
fix: default value of control panel
Browse files Browse the repository at this point in the history
  • Loading branch information
chengcyber committed Jun 29, 2024
1 parent 489d386 commit 85cdbef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/ControlPanel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const gs = GraphService.getInstance();

export const ControlPanel = () => {
const [isOpen, { setTrue: openPanel, setFalse: dismissPanel }] =
useBoolean(true);
useBoolean(false);
const [isExpandActions, { toggle: toggleExpandActions }] = useBoolean(true);
const [isExportingImage, setIsExportImage] = useState(false);

Expand Down

0 comments on commit 85cdbef

Please sign in to comment.