Supra_App/src/routes/(authed)/+error.svelte

13 lines
255 B
Svelte
Raw Normal View History

2026-02-17 14:30:02 +07:00
<script lang="ts">
import { goto } from '$app/navigation';
import { page } from '$app/state';
console.log('error on authed page route, ', page);
setTimeout(() => {
goto('/entry');
}, 3000);
2026-02-17 14:30:02 +07:00
</script>
<h1>{page.status} {page.error?.message}</h1>