fix: Remove check for zero transaction amounts in transactions page (#2559)
* fix: Polygon transactions not coming up in transactions history page * fix: Filter out polygon spam transactions * fix: Remove check for zero transaction amounts in transactions page * fix: remove redundant check for zero transaction amounts in transactions page
David Adegoke committed
Oct 6, 2025 at 12:04 UTC
6cacfd087a42a867f863d00b4c6d8a99699da691
1 file changed
-2
lib/src/screens/dashboard/pages/transactions_page.dart
-2
@@ -90,8 +90,6 @@ class TransactionsPage extends StatelessWidget {
90
return Container();
91
}
92
93
- if (item.transaction.amount == 0.0) return Container();
94
-
93
final transaction = item.transaction;
94
final transactionType =
95
dashboardViewModel.getTransactionType(transaction);