From 9b5daa0f4edf8f720384bfae2f90c1f2011ddf3e Mon Sep 17 00:00:00 2001 From: smk762 Date: Sun, 26 Oct 2025 22:14:29 +0800 Subject: [PATCH] show only compatible activation filter options --- .../wallet/coins_manager/coins_manager_filters_dropdown.dart | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/views/wallet/coins_manager/coins_manager_filters_dropdown.dart b/lib/views/wallet/coins_manager/coins_manager_filters_dropdown.dart index e88bdee030..f09ebc4c6e 100644 --- a/lib/views/wallet/coins_manager/coins_manager_filters_dropdown.dart +++ b/lib/views/wallet/coins_manager/coins_manager_filters_dropdown.dart @@ -149,7 +149,9 @@ class _Dropdown extends StatelessWidget { .firstWhereOrNull((coin) => coin.type == type) != null; case WalletType.trezor: - return coinsBloc.state.coins.values + // In Trezor mode, hide filter options that have no coins in the + // currently visible list (after search/test-coin filters). + return bloc.state.coins .firstWhereOrNull((coin) => coin.type == type) != null; case WalletType.metamask: