Skip to content

Commit

Permalink
Remove needless braces.
Browse files Browse the repository at this point in the history
  • Loading branch information
jsoules committed Jul 31, 2024
1 parent a6d94ff commit 5356852
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions gui/src/app/pages/HomePage/Sidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -119,16 +119,16 @@ const Sidebar: FunctionComponent<Sidebar> = ({
</div>

<CloseableDialog
title={"Load Project"}
id={"loadProjectDialog"}
title="Load Project"
id="loadProjectDialog"
open={loadProjectVisible}
handleClose={loadProjectClose}
>
<LoadProjectWindow onClose={loadProjectClose} />
</CloseableDialog>
<CloseableDialog
title={"Save this project"}
id={"saveProjectDialog"}
title="Save this project"
id="saveProjectDialog"
open={saveProjectVisible}
handleClose={saveProjectClose}
>
Expand Down

0 comments on commit 5356852

Please sign in to comment.