Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion app/lib/screens/market/overview.dart
Original file line number Diff line number Diff line change
Expand Up @@ -627,6 +627,9 @@ class _OverviewWidgetState extends ConsumerState<OverviewWidget> {
.toList();

if (filteredWallets.isEmpty) {
const errorMessage =
'You must have at least one activated wallet with both assets USDC & TFT';

return Container(
width: double.infinity,
padding: const EdgeInsets.all(16),
Expand All @@ -645,7 +648,7 @@ class _OverviewWidgetState extends ConsumerState<OverviewWidget> {
),
const SizedBox(height: 12),
Text(
'No wallets with TFT and USDC assets found.',
errorMessage,
style: Theme.of(context)
.textTheme
.bodyMedium!
Expand Down