aboutsummaryrefslogtreecommitdiffstats
path: root/src/routes/canary/+page.svelte
diff options
context:
space:
mode:
Diffstat (limited to 'src/routes/canary/+page.svelte')
-rw-r--r--src/routes/canary/+page.svelte4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/routes/canary/+page.svelte b/src/routes/canary/+page.svelte
index 2bb9142..c3104ba 100644
--- a/src/routes/canary/+page.svelte
+++ b/src/routes/canary/+page.svelte
@@ -1,10 +1,10 @@
<script lang="ts">
import { goto } from '$app/navigation';
- import { base } from '$app/paths';
+ import { resolve } from '$app/paths';
import { onMount } from 'svelte';
onMount(() =>
- goto(base + '/canaries/', {
+ goto(resolve('/canaries/'), {
replaceState: true,
}),
);