aboutsummaryrefslogtreecommitdiff
path: root/src/routes/+error.svelte
diff options
context:
space:
mode:
Diffstat (limited to 'src/routes/+error.svelte')
-rw-r--r--src/routes/+error.svelte26
1 files changed, 13 insertions, 13 deletions
diff --git a/src/routes/+error.svelte b/src/routes/+error.svelte
index eb3ad800..71482ffb 100644
--- a/src/routes/+error.svelte
+++ b/src/routes/+error.svelte
@@ -1,18 +1,18 @@
<script lang="ts">
-import { page } from '$app/stores';
-import { closest } from '$lib/Error/path';
-import Popup from '$lib/Layout/Popup.svelte';
+import { page } from "$app/stores";
+import { closest } from "$lib/Error/path";
+import Popup from "$lib/Layout/Popup.svelte";
-$: suggestion = closest($page.url.pathname.replace('/', ''), [
- 'birthdays',
- 'completed',
- 'schedule',
- 'hololive',
- 'settings',
- 'tools',
- 'updates',
- 'user',
- 'wrapped'
+$: suggestion = closest($page.url.pathname.replace("/", ""), [
+ "birthdays",
+ "completed",
+ "schedule",
+ "hololive",
+ "settings",
+ "tools",
+ "updates",
+ "user",
+ "wrapped",
]);
</script>