chore: migrate to SvelteKit app state (#14807)

* chore: migrate to SvelteKit app state

* update package-lock.json
This commit is contained in:
Ben McCann
2024-12-20 15:18:22 -07:00
committed by GitHub
parent a14735846c
commit da70a1e457
11 changed files with 171 additions and 136 deletions
+2 -2
View File
@@ -1,6 +1,6 @@
<script>
import { page } from '$app/stores';
import { page } from '$app/state';
import Error from '$lib/components/error.svelte';
</script>
<Error error={$page.error}></Error>
<Error error={page.error}></Error>