Skip to content
This repository has been archived by the owner on Sep 11, 2024. It is now read-only.

Commit

Permalink
Fix keyboard shortcut icons on macOS (#7869)
Browse files Browse the repository at this point in the history
  • Loading branch information
jryans committed Feb 22, 2022
1 parent 8fccef8 commit d79d5ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/accessibility/KeyboardShortcuts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ export const KEY_ICON: Record<string, string> = {
};
if (isMac) {
KEY_ICON[Key.META] = "⌘";
KEY_ICON[Key.SHIFT] = "⌥";
KEY_ICON[Key.ALT] = "⌥";
}

export const CATEGORIES: Record<CategoryName, ICategory> = {
Expand Down

0 comments on commit d79d5ce

Please sign in to comment.