mirror of
https://github.com/imputnet/cobalt.git
synced 2025-01-20 05:38:28 +00:00
16 lines
474 B
Svelte
16 lines
474 B
Svelte
<script lang="ts">
|
|
import { goto } from "$app/navigation";
|
|
import { page } from "$app/stores";
|
|
import { defaultSettingsPage } from "$lib/settings/defaults";
|
|
|
|
$: {
|
|
if ($page.error?.message === "Not Found") {
|
|
if ($page.url.pathname.startsWith("/settings")) {
|
|
goto(defaultSettingsPage(), { replaceState: true });
|
|
} else {
|
|
goto("/", { replaceState: true });
|
|
}
|
|
}
|
|
}
|
|
</script>
|