Skip to content

Commit

Permalink
comma fix
Browse files Browse the repository at this point in the history
  • Loading branch information
wokkieman authored Jan 5, 2024
1 parent 7e1a200 commit 3e272a2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/loot-core/src/server/accounts/sync.ts
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@ async function normalizeGoCardlessTransactions(transactions, acctId) {
trans.debtorName ||
trans.remittanceInformationUnstructured ||
(trans.remittanceInformationUnstructuredArray || []).join(', ') ||
trans.additionalInformation
trans.additionalInformation,
),
);
if (trans.debtorAccount && trans.debtorAccount.iban) {
Expand All @@ -333,7 +333,7 @@ async function normalizeGoCardlessTransactions(transactions, acctId) {
trans.creditorName ||
trans.remittanceInformationUnstructured ||
(trans.remittanceInformationUnstructuredArray || []).join(', ') ||
trans.additionalInformation
trans.additionalInformation,
),
);
if (trans.creditorAccount && trans.creditorAccount.iban) {
Expand Down

0 comments on commit 3e272a2

Please sign in to comment.