diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/routes/canary/+page.svelte | 4 |
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, }), ); |