Skip to content

Commit

Permalink
Fix for t2.trim is not a function
Browse files Browse the repository at this point in the history
credit to itaditya#25
  • Loading branch information
JasonLovesDoggo committed Aug 2, 2024
1 parent c9c78cf commit f589e98
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/lib/Panel/Result/Result.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,10 @@ const ResultContent: Component<ResultContentProps> = (p) => {
</div>
<div>
<Show when={p.action.shortcut}>
{(shortcut) => (
<KbdShortcut
class={styles.resultShortcut}
shortcut={shortcut}
shortcut={p.action.shortcut!}
/>
)}
</Show>
</div>
</div>
Expand Down

0 comments on commit f589e98

Please sign in to comment.