Skip to content

Commit

Permalink
fix hotkeys names
Browse files Browse the repository at this point in the history
  • Loading branch information
suren-atoyan committed May 28, 2022
1 parent 2180b09 commit 55c63d5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/sections/HotKeys/HotKeys.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,13 @@ function HotKeys() {
<DialogContent>
<FlexBox alignItems="center" height={50} justifyContent="space-between">
<Typography>Toggle Theme</Typography>
<Button color="warning" variant="outlined" onClick={sidebarActions.toggle}>
<Button color="warning" variant="outlined" onClick={themeActions.toggle}>
alt + t
</Button>
</FlexBox>
<FlexBox alignItems="center" height={50} justifyContent="space-between">
<Typography>Toggle Sidebar</Typography>
<Button color="warning" variant="outlined" onClick={themeActions.toggle}>
<Button color="warning" variant="outlined" onClick={sidebarActions.toggle}>
alt + s
</Button>
</FlexBox>
Expand Down

0 comments on commit 55c63d5

Please sign in to comment.