diff --git a/src/features/hotkey.tsx b/src/features/hotkey.tsx index b716f9a..e4cd165 100644 --- a/src/features/hotkey.tsx +++ b/src/features/hotkey.tsx @@ -13,7 +13,7 @@ import type { import { processComputable } from "util/computed"; import { createLazyProxy } from "util/proxies"; import { shallowReactive, unref } from "vue"; -import HotkeyVue from "components/Hotkey.vue"; +import Hotkey from "components/Hotkey.vue"; export const hotkeys: Record = shallowReactive({}); export const HotkeyType = Symbol("Hotkey"); @@ -103,8 +103,8 @@ registerInfoComponent(

Hotkeys

{keys.map(hotkey => ( -
- {hotkey?.description} +
+ {hotkey?.description}
))}