17 lines
488 B
TypeScript
17 lines
488 B
TypeScript
import type { PageLoad } from './$types';
|
|
import { error } from '@sveltejs/kit';
|
|
|
|
export const load: PageLoad = async ({ parent }) => {
|
|
const data = await parent();
|
|
|
|
if (!data.account_id) {
|
|
console.error('Core Dashboard: No account_id found in parent data');
|
|
// We could throw an error here, but for now let's just log it and return
|
|
// to avoid a hard crash if the user is just navigating.
|
|
}
|
|
|
|
return {
|
|
account_id: data.account_id
|
|
};
|
|
};
|