Fix self-closing tags

This commit is contained in:
Jon Staab
2025-02-03 15:01:42 -08:00
parent 34477e8ea6
commit cfbff94b4c
26 changed files with 46 additions and 37 deletions

View File

@@ -255,13 +255,13 @@
</svelte:head>
{#await ready}
<div data-theme={$theme} />
<div data-theme={$theme}></div>
{:then}
<div data-theme={$theme}>
<AppContainer>
<slot />
</AppContainer>
<ModalContainer />
<div class="tippy-target" />
<div class="tippy-target"></div>
</div>
{/await}