Skip to content

Commit

Permalink
Add About page to command pallete
Browse files Browse the repository at this point in the history
  • Loading branch information
karniv00l committed Nov 1, 2022
1 parent b2b1a83 commit 8e31c47
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/components/CommandPalette.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -384,6 +384,13 @@ const CommandPalette = (props: CommandPaletteProps) => {
icon: <LogoutOutlined />,
perform: logoutAction,
},
{
id: 'AboutAction',
name: 'About',
subtitle: 'About this app / sponsor.',
icon: <InfoCircleOutlined />,
perform: () => navigate(Routes.ABOUT),
},
];

return (
Expand Down

0 comments on commit 8e31c47

Please sign in to comment.