Fix currency in expense list tile

This commit is contained in:
Hillel Coren 2023-11-15 17:07:07 +02:00
parent 7262973163
commit 663b587144
1 changed files with 1 additions and 1 deletions

View File

@ -117,7 +117,7 @@ class _EntityListTileState extends State<EntityListTile> {
formatDate(entity.date, context);
} else if (entity is ExpenseEntity) {
defaultSubtitle =
formatNumber(entity.amount, context, clientId: entity.clientId)! +
formatNumber(entity.amount, context, currencyId: entity.currencyId)! +
'' +
formatDate(entity.date, context);
} else if (entity is TransactionEntity) {