diff options
Diffstat (limited to 'source/features/improve-shortcut-help.tsx')
-rw-r--r-- | source/features/improve-shortcut-help.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/features/improve-shortcut-help.tsx b/source/features/improve-shortcut-help.tsx index b63ac31f..607fe341 100644 --- a/source/features/improve-shortcut-help.tsx +++ b/source/features/improve-shortcut-help.tsx @@ -16,7 +16,7 @@ function improveShortcutHelp(dialog: Element): void { </div> <ul> - {features.getShortcuts().map(({hotkey, description}) => ( + {[...features.shortcutMap].map(([hotkey, description]) => ( <li className="Box-row d-flex flex-row"> <div className="flex-auto">{description}</div> <div className="ml-2 no-wrap"> |