Update Toasts.svelte

This commit is contained in:
Andras Bacsai 2022-08-11 09:07:21 +00:00
parent 06a344c0d6
commit 9771bea60a

View File

@ -9,7 +9,7 @@
<section>
<article class="toast toast-bottom toast-end rounded-none" role="alert" transition:fade>
{#each $toasts as toast (toast.id)}
<Toast type={toast.type}>{toast.message}</Toast>
<Toast type={toast.type}>{@html toast.message}</Toast>
{/each}
</article>
</section>