Skip to content

Commit

Permalink
fix currency symbol
Browse files Browse the repository at this point in the history
  • Loading branch information
itsPronay committed Jul 13, 2024
1 parent 064e6cc commit 08636e8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -401,7 +401,7 @@ fun TransactionItemRow(
)

Text(
text = transaction.currency?.displaySymbol.toString() + " " + transaction.amount?.toString(),
text = transaction.currency?.displaySymbol + " " + transaction.amount?.toString(),
style = MaterialTheme.typography.bodyLarge,
modifier = Modifier.weight(3f),
textAlign = TextAlign.End,
Expand Down

0 comments on commit 08636e8

Please sign in to comment.