chore(web): auto sort imports (#7118)

chore(web): auto sort impomrts
This commit is contained in:
Jason Rasmussen
2024-02-14 10:54:32 -05:00
committed by GitHub
parent 2906950188
commit 747df0ae86
8 changed files with 32 additions and 9 deletions
+2 -2
View File
@@ -1,9 +1,9 @@
import { AppRoute } from '$lib/constants';
import { user } from '$lib/stores/user.store';
import { authenticate } from '$lib/utils/auth';
import { redirect } from '@sveltejs/kit';
import type { PageLoad } from './$types';
import { get } from 'svelte/store';
import { user } from '$lib/stores/user.store';
import type { PageLoad } from './$types';
export const load = (async () => {
await authenticate();
+2 -2
View File
@@ -1,6 +1,6 @@
import type { PageLoad } from './$types';
import { authenticate } from '$lib/utils/auth';
import { loadConfig } from '$lib/stores/server-config.store';
import { authenticate } from '$lib/utils/auth';
import type { PageLoad } from './$types';
export const load = (async () => {
await authenticate({ admin: true });