1 2 3 4 5 6 7
import { filterSession } from '../hooks.server'; export const load = async ({ locals }) => { return { session: filterSession(await locals.auth()), }; };