fix evm decimals in history

Robert Malikowski committed Jul 1, 2026 at 17:25 UTC bfeae1eca830cf88a92fef4e0a8195ea39b11505
1 file changed +1 -1
lib/view_model/dashboard/transaction_list_item.dart
+1 -1
@@ -51,7 +51,7 @@ class TransactionListItem extends ActionListItem with Keyable {
51 .withLocalSeperator(_appStore.settingsStore.languageCode);
52 }
53
54 - return transaction.amount.toStringWithSymbol();
54 + return transaction.amount.toStringWithSymbol(fractionalDigits: 8);
55 }
56
57 String get formattedTitle {