2026-02-17 14:30:02 +07:00
|
|
|
<script lang="ts">
|
2026-05-12 16:31:20 +07:00
|
|
|
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>
|
|
|
|
|
|
2026-05-12 16:31:20 +07:00
|
|
|
<h1>{page.status} {page.error?.message}</h1>
|