Files
pocket-id/frontend/src/routes/login/alternative/email/+page.ts
2025-04-24 21:09:52 +02:00

8 lines
169 B
TypeScript

import type { PageLoad } from './$types';
export const load: PageLoad = async ({ url }) => {
return {
redirect: url.searchParams.get('redirect') || undefined
};
};