diff options
Diffstat (limited to 'app/src')
-rw-r--r-- | app/src/lib/components/Navigation.svelte (renamed from app/src/lib/svelte/Navigation.svelte) | 0 | ||||
-rw-r--r-- | app/src/lib/components/ReloadPrompt.svelte (renamed from app/src/lib/svelte/ReloadPrompt.svelte) | 0 | ||||
-rw-r--r-- | app/src/routes/+layout.svelte | 8 |
3 files changed, 4 insertions, 4 deletions
diff --git a/app/src/lib/svelte/Navigation.svelte b/app/src/lib/components/Navigation.svelte index 2e5ba98..2e5ba98 100644 --- a/app/src/lib/svelte/Navigation.svelte +++ b/app/src/lib/components/Navigation.svelte diff --git a/app/src/lib/svelte/ReloadPrompt.svelte b/app/src/lib/components/ReloadPrompt.svelte index e6effbb..e6effbb 100644 --- a/app/src/lib/svelte/ReloadPrompt.svelte +++ b/app/src/lib/components/ReloadPrompt.svelte diff --git a/app/src/routes/+layout.svelte b/app/src/routes/+layout.svelte index 034ac0e..52385fc 100644 --- a/app/src/routes/+layout.svelte +++ b/app/src/routes/+layout.svelte @@ -1,5 +1,5 @@ <script lang="ts"> - import Navigation from '$lib/svelte/Navigation.svelte' + import Navigation from '$lib/components/Navigation.svelte' import Icon from '@iconify/svelte' import menuIcon from '@iconify/icons-carbon/menu' import { @@ -28,12 +28,12 @@ }) } - $: webManifestLink = pwaInfo ? pwaInfo.webManifest.linkTag : '' + $: webManifest = pwaInfo ? pwaInfo.webManifest.linkTag : '' </script> <svelte:head> <!-- eslint-disable-next-line svelte/no-at-html-tags VitePWA can probably be trusted --> - {@html webManifestLink} + {@html webManifest} </svelte:head> <Drawer> @@ -64,6 +64,6 @@ <slot /> </AppShell> -{#await import('$lib/svelte/ReloadPrompt.svelte') then { default: ReloadPrompt }} +{#await import('$lib/components/ReloadPrompt.svelte') then { default: ReloadPrompt }} <ReloadPrompt /> {/await} |