fix: setting item in menu bar (#1485)

This commit is contained in:
Percy Ma
2023-10-11 03:32:23 -05:00
committed by GitHub
parent 08aeed85a6
commit 7d0b09c5f9

View File

@@ -9,7 +9,7 @@ export function useKeybindHandler() {
useEffect(() => {
const handler = (e: KeybindEvent) => {
if (e.detail.action === 'open_settings') {
navigate('/settings');
navigate('/settings/client/general');
e.preventDefault();
return;
}