From 24a77c81b3ff6f92afe5e5bbdef7cf15eb379df6 Mon Sep 17 00:00:00 2001 From: Ahmed Bouhuolia Date: Mon, 8 Jul 2024 15:25:28 +0200 Subject: [PATCH] fix: unexpected char in cashflow transactions report --- .../CashflowAccountTransactions/CashflowAccountTransactions.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/server/src/services/FinancialStatements/CashflowAccountTransactions/CashflowAccountTransactions.ts b/packages/server/src/services/FinancialStatements/CashflowAccountTransactions/CashflowAccountTransactions.ts index 7ca2694cf..f287c0268 100644 --- a/packages/server/src/services/FinancialStatements/CashflowAccountTransactions/CashflowAccountTransactions.ts +++ b/packages/server/src/services/FinancialStatements/CashflowAccountTransactions/CashflowAccountTransactions.ts @@ -74,7 +74,7 @@ export class CashflowAccountTransactionReport extends FinancialSheet { const firstMatchedTrans = first(matchedTrans); return ( - (firstCategorizedTrans?.id || + firstCategorizedTrans?.id || firstMatchedTrans?.uncategorizedTransactionId || null );