This commit is contained in:
Timothy Jaeryang Baek 2025-10-27 23:42:00 -07:00
parent b9bbf22581
commit a776dbd01d
2 changed files with 2 additions and 2 deletions

View file

@ -24,7 +24,7 @@
export let onSourceClick: Function = () => {};
</script>
{#each tokens as token}
{#each tokens as token, tokenIdx (tokenIdx)}
{#if token.type === 'escape'}
{unescapeHtml(token.text)}
{:else if token.type === 'html'}

View file

@ -13,7 +13,7 @@
{:else}
{#each texts as text}
<span class="" transition:fade={{ duration: 100 }}>
{text}
{text}{' '}
</span>
{/each}
{/if}