Moved to new united api

This commit is contained in:
2025-07-20 16:54:01 -04:00
parent c60235f281
commit c1991aaa3e
15 changed files with 1726 additions and 184 deletions

View File

@ -2,7 +2,7 @@ import { error } from '@sveltejs/kit';
import { getAccount, getTransactions, getBudgets, getBudgetTransactionsForAccount } from '$lib/db';
/** @type {import('./$types').PageServerLoad} */
export async function load({ params }) {
export async function load({ params, depends }) {
const slug = params.slug;
const transactions = await getTransactions(slug);
const account = await getAccount(slug);