mirror of
https://github.com/jcreek/LivingDexTracker.git
synced 2026-07-13 02:53:45 +00:00
8 lines
130 B
TypeScript
8 lines
130 B
TypeScript
export const load = async ({ parent }) => {
|
|
const { supabase, session } = await parent();
|
|
return {
|
|
supabase,
|
|
session
|
|
};
|
|
};
|