From b57f5bd8c91fbd5a1af17914dd8adae193d3a129 Mon Sep 17 00:00:00 2001 From: thepaperpilot Date: Fri, 12 Apr 2024 07:10:24 -0500 Subject: [PATCH] Unref hotkey descriptions --- src/features/hotkey.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/features/hotkey.tsx b/src/features/hotkey.tsx index eedbe4f..e21d2b3 100644 --- a/src/features/hotkey.tsx +++ b/src/features/hotkey.tsx @@ -142,7 +142,7 @@ registerInfoComponent(
{keys.map(hotkey => (
- {hotkey?.description} + {unref(hotkey?.description)}
))}