From d79d5ceeac6b056b8eac614548e404ae9242f559 Mon Sep 17 00:00:00 2001 From: "J. Ryan Stinnett" Date: Tue, 22 Feb 2022 11:25:28 +0000 Subject: [PATCH] Fix keyboard shortcut icons on macOS (#7869) --- src/accessibility/KeyboardShortcuts.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/accessibility/KeyboardShortcuts.ts b/src/accessibility/KeyboardShortcuts.ts index 0bd3cffcad4..3d798f47b7b 100644 --- a/src/accessibility/KeyboardShortcuts.ts +++ b/src/accessibility/KeyboardShortcuts.ts @@ -175,7 +175,7 @@ export const KEY_ICON: Record = { }; if (isMac) { KEY_ICON[Key.META] = "⌘"; - KEY_ICON[Key.SHIFT] = "⌥"; + KEY_ICON[Key.ALT] = "⌥"; } export const CATEGORIES: Record = {