Unref hotkey descriptions #85

Merged
thepaperpilot merged 2 commits from thepaperpilot/Profectus:fix/hotkey-description into main 2024-10-17 16:28:05 +00:00
Showing only changes of commit b57f5bd8c9 - Show all commits

View file

@ -142,7 +142,7 @@ registerInfoComponent(
<div style="column-count: 2">
{keys.map(hotkey => (
<div>
<Hotkey hotkey={hotkey as GenericHotkey} /> {hotkey?.description}
<Hotkey hotkey={hotkey as GenericHotkey} /> {unref(hotkey?.description)}
</div>
))}
</div>