From a0e6dc0f1b5a5ae46a2295b8ef6528344b1069c9 Mon Sep 17 00:00:00 2001 From: Jan Bader Date: Fri, 23 Sep 2022 21:03:12 +0000 Subject: [PATCH] Fix reference to account.Transactions --- web/src/stores/budget.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/web/src/stores/budget.ts b/web/src/stores/budget.ts index 1f84a75..1c42919 100644 --- a/web/src/stores/budget.ts +++ b/web/src/stores/budget.ts @@ -59,8 +59,6 @@ export const useBudgetsStore = defineStore("budget", { MergeBudgetingData(response: any) { const accounts = useAccountStore(); for (const account of response.Accounts || []) { - const existingAccount = accounts.Accounts.get(account.ID); - account.Transactions = existingAccount?.Transactions ?? []; if (account.LastReconciled.Valid) account.LastReconciled.Time = new Date( account.LastReconciled.Time