Skip to content

Commit

Permalink
page.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
wkrzywiec committed Nov 30, 2024
1 parent 44e07c6 commit 67ef407
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion services/mankkoo-ui/app/accounts/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ const MySwal = withReactContent(Swal);
export default function Accounts() {

//Accounts list and details
function accountHeader(acc?: AccountInfoResponse): string | undefined {
function accountHeader(acc?: AccountInfoResponse): string {
if (acc === undefined) return "Bank - Account";
return acc?.bankName + " - " + (acc?.alias !== undefined ? acc?.alias : acc?.name)
}
Expand Down

0 comments on commit 67ef407

Please sign in to comment.