This commit is contained in:
Benjamin Palko 2024-12-20 11:05:47 -05:00
parent 3691bd6f8f
commit 5b838e0dfa
2 changed files with 3 additions and 3 deletions

View file

@ -1,4 +1,4 @@
import { validateSession } from '$lib/server/auth/index.js'; import { validateSession } from '$lib/server/auth';
export async function load(event) { export async function load(event) {
await validateSession(event); await validateSession(event);

View file

@ -1,4 +1,4 @@
import { validateSession } from '$lib/server/auth/index.js'; import { validateSession } from '$lib/server/auth';
export async function load(event) { export async function load(event) {
const { const {
@ -7,4 +7,4 @@ export async function load(event) {
return { return {
user: rest, user: rest,
}; };
} }