Skip to content

Commit

Permalink
Merge pull request #117 from huntabyte/fix/112
Browse files Browse the repository at this point in the history
fix: self closing element issue
  • Loading branch information
wobsoriano authored Jul 14, 2024
2 parents 4e2a53c + 793f333 commit 2bf5eb5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/mean-ears-relate.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"svelte-sonner": patch
---

fix: self-closing elements
2 changes: 1 addition & 1 deletion src/lib/Loader.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<div class="sonner-loading-wrapper" data-visible={visible}>
<div class="sonner-spinner">
{#each bars as _, i (i)}
<div class="sonner-loading-bar" />
<div class="sonner-loading-bar"></div>
{/each}
</div>
</div>

0 comments on commit 2bf5eb5

Please sign in to comment.