Add About page to command pallete

This commit is contained in:
Piotr Rogowski 2022-11-01 19:20:31 +01:00
parent b2b1a83e3e
commit 8e31c47bc7
No known key found for this signature in database
GPG Key ID: 4A842D702D9C6F8F
1 changed files with 7 additions and 0 deletions

View File

@ -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 (