Skip to content

Commit bbd8a57

Browse files
authored
Merge pull request #355 from vim-jp-radio/fix-store
fix(404): app/stores -> app/state
2 parents 55aeb74 + 7cda2cc commit bbd8a57

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/routes/+error.svelte

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<script lang='ts'>
22
import { Konami } from '$/lib/Konami';
33
import { dev } from '$app/environment';
4-
import { page } from '$app/stores';
4+
import { page } from '$app/state';
55
66
const konami = new Konami(2000);
77
@@ -11,7 +11,7 @@
1111
}
1212
</script>
1313

14-
{#if $page.error != null}
14+
{#if page.error != null}
1515
<h1
1616
uno-grid
1717
uno-h-100svh
@@ -26,7 +26,7 @@
2626
src='$/assets/alisue/beer.png'
2727
/>
2828
<span uno-text>
29-
{$page.error.message}
29+
{page.error.message}
3030
</span>
3131
</h1>
3232
{/if}

0 commit comments

Comments
 (0)