diff options
Diffstat (limited to 'src/routes/__error.svelte')
-rw-r--r-- | src/routes/__error.svelte | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/routes/__error.svelte b/src/routes/__error.svelte index b49d2a1..3057f19 100644 --- a/src/routes/__error.svelte +++ b/src/routes/__error.svelte @@ -1,7 +1,7 @@ <script lang="ts" context="module"> - import type { ErrorLoad } from '@sveltejs/kit' + import type { Load } from '@sveltejs/kit' - export const load: ErrorLoad = async ({ error, status }) => { + export const load: Load = async ({ error, status }) => { return { props: { error, |