Skip to content

Commit af4fe14

Browse files
committed
fix(ui/emote): use provider:id as the emote key
1 parent 56a7341 commit af4fe14

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/lib/components/chat/+emote-picker.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
{/if}
4848
{#if emotes.length > 0}
4949
<div class="grid grid-cols-8 gap-1">
50-
{#each emotes as emote, i (emote.name)}
50+
{#each emotes as emote, i (`${emote.provider}:${emote.id}`)}
5151
<Tooltip.Root>
5252
<Tooltip.Trigger>
5353
<button

0 commit comments

Comments
 (0)