diff --git a/frontend/src/lib/navigation.ts b/frontend/src/lib/navigation.ts index a09de19da7..8a677e5eff 100644 --- a/frontend/src/lib/navigation.ts +++ b/frontend/src/lib/navigation.ts @@ -5,7 +5,7 @@ export function goto(path, options = {}) { if (svelteBase == '') { return svelteGoto(path, options) } else { - const fullPath = path.startsWith(svelteBase) ? path : `${svelteBase}/${path}` + const fullPath = path.startsWith(svelteBase) ? path : `${svelteBase}${path}` return svelteGoto(fullPath, options) } }