Skip to content

Commit

Permalink
Fix bug with wrong name in transaction history item
Browse files Browse the repository at this point in the history
  • Loading branch information
Jens Becker committed Aug 23, 2021
1 parent b4c401b commit 93ac13c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/game/game_screen/view/game_view.dart
Original file line number Diff line number Diff line change
Expand Up @@ -429,7 +429,7 @@ class _TransactionCard extends StatelessWidget {
? 'You payed $toUserName $amount.'
: '$fromUserName payed $toUserName $amount.'
: myTransaction
? '$toUserName payed you $amount.'
? '$fromUserName payed you $amount.'
: '$fromUserName payed $toUserName $amount.';
case TransactionType.toFreeParking:
return myTransaction
Expand Down

0 comments on commit 93ac13c

Please sign in to comment.