import type { PageServerLoad } from './$types'; import { get_budgets } from '$lib/server/actual'; import sb1 from "$lib/server/sb1" export const load = (async () => { return { actual: { meta: await get_budgets() }, sb1: { accounts: (await sb1.data.get_accounts())?.accounts } }; }) satisfies PageServerLoad;