Files
OSIT-AE-App-Svelte/src/routes/core/+page.ts
Scott Idem d2084de4d8 Fix 500 error, add Address/Contact placeholders, and enhance Person activity view
- Fixed broken import path in /core dashboard
- Simplified core layout data requirements to prevent crashes
- Implemented V3 CRUD and Dexie tables for Addresses and Contacts
- Created placeholder management pages for /core/addresses and /core/contacts
- Added 'Linked Activity & Content' section to Person detail page to show related events and posts
2026-01-06 16:16:31 -05:00

16 lines
495 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
};
};