Skip to content

Commit

Permalink
fix: remove self-closing tags
Browse files Browse the repository at this point in the history
Remove self-closing tags to prevent warnings in Svelte 5
  • Loading branch information
BearToCode committed Oct 27, 2024
1 parent 906278e commit aa6bc28
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/carta-md/src/lib/internal/components/Input.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@
bind:this={textarea}
on:scroll={() => (textarea.scrollTop = 0)}
on:keydown={() => (prevValue = value)}
/>
></textarea>
</div>

{#if mounted}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@
{/if}
</div>

<div class="carta-filler" bind:clientWidth={availableWidth} />
<div class="carta-filler" bind:clientWidth={availableWidth}></div>

<div class="carta-toolbar-right" bind:this={iconsContainer}>
{#if !(mode === 'tabs' && tab === 'preview')}
Expand Down

0 comments on commit aa6bc28

Please sign in to comment.