fixup: [frontend] Send through the root path server file

This commit is contained in:
wilson 2026-04-18 20:06:06 +01:00
parent 678ada3031
commit 33da2faa0d

View file

@ -0,0 +1,7 @@
import type { ServerLoad } from '@sveltejs/kit';
export const load: ServerLoad = async ({ locals }) => {
return {
isLoggedIn: !!locals.authToken
};
};