mirror of
https://github.com/pocket-id/pocket-id.git
synced 2026-02-09 16:04:15 +00:00
7 lines
159 B
Svelte
7 lines
159 B
Svelte
<script lang="ts">
|
|
import { page } from '$app/stores';
|
|
import Error from '$lib/components/error.svelte';
|
|
</script>
|
|
|
|
<Error message={$page.error!.message} />
|