Skip to content

Commit

Permalink
Fix connect account
Browse files Browse the repository at this point in the history
  • Loading branch information
pontusab committed Oct 30, 2024
1 parent 4b5a864 commit e572d3c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -233,6 +233,7 @@ export function SelectBankAccountsModal() {
logo_url: account.institution?.logo,
account_id: account.id,
bank_name: account.institution.name,
// TODO: Remove once we have a fix and return currency from engine
currency: account.currency ?? account.balance.currency,
balance: account.balance.amount,
enabled: true,
Expand Down
1 change: 1 addition & 0 deletions apps/engine/src/providers/gocardless/transform.ts
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,7 @@ const transformAccountName = (account: TransformAccountName) => {
return account.product;
}

// TODO: Fix no name
return "No name";
};

Expand Down

0 comments on commit e572d3c

Please sign in to comment.