diff --git a/app/lib/screens/market/overview.dart b/app/lib/screens/market/overview.dart index 7603e024..ba255b32 100644 --- a/app/lib/screens/market/overview.dart +++ b/app/lib/screens/market/overview.dart @@ -627,6 +627,9 @@ class _OverviewWidgetState extends ConsumerState { .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), @@ -645,7 +648,7 @@ class _OverviewWidgetState extends ConsumerState { ), const SizedBox(height: 12), Text( - 'No wallets with TFT and USDC assets found.', + errorMessage, style: Theme.of(context) .textTheme .bodyMedium!