From e2fc9e4343c798806234151c1d6c4a01c3237468 Mon Sep 17 00:00:00 2001 From: Jan Bader Date: Sun, 21 Aug 2022 20:01:41 +0000 Subject: [PATCH] use null instead of undefined --- web/src/stores/transactions.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/src/stores/transactions.ts b/web/src/stores/transactions.ts index cb90112..f2ceb7e 100644 --- a/web/src/stores/transactions.ts +++ b/web/src/stores/transactions.ts @@ -17,12 +17,12 @@ export interface Transaction { TransferAccount: string; CategoryGroup: string; Category: string; - CategoryID: string | undefined; + CategoryID: string | null; Memo: string; Status: string; GroupID: string; Payee: string; - PayeeID: string | undefined; + PayeeID: string | null; Amount: number; Reconciled: boolean; Account: string;