🐛 Fixed more errors coming from upgrading SvelteKit

This commit is contained in:
Mawoka
2022-08-18 17:07:02 +02:00
parent cacd727c0e
commit dcddb3b764
14 changed files with 51 additions and 36 deletions
@@ -1,14 +1,15 @@
import { redirect } from '@sveltejs/kit';
import { signedIn } from '$lib/stores';
export async function load({ session }) {
if (!session.authenticated) {
export async function load({ parent }) {
const { email } = await parent();
if (!email) {
throw redirect(302, '/account/login?returnTo=/import');
} else {
if (session.authenticated) {
if (email) {
signedIn.set(true);
}
}
return {
email: session.email
email
};
}