diff --git a/src/frontend/src/pages/SettingsPage/pages/ShortcutsPage/EditShortcutButton/index.tsx b/src/frontend/src/pages/SettingsPage/pages/ShortcutsPage/EditShortcutButton/index.tsx index 3f596da57..2596b32c1 100644 --- a/src/frontend/src/pages/SettingsPage/pages/ShortcutsPage/EditShortcutButton/index.tsx +++ b/src/frontend/src/pages/SettingsPage/pages/ShortcutsPage/EditShortcutButton/index.tsx @@ -141,7 +141,7 @@ export default function EditShortcutButton({ fixedKey = "Ctrl"; } if (e.key?.toLowerCase() === "meta") { - fixedKey = "Command"; + fixedKey = "Cmd"; } setKey((oldKey) => getFixedCombination({ oldKey: oldKey!, key: fixedKey }), @@ -156,7 +156,7 @@ export default function EditShortcutButton({ }, [key, setKey]); return ( - + Key Combination {children} -
+
{key === null ? shortcutInitialValue?.toUpperCase()