From 23dc56c8b287acd5b0116c5238e0a1f70119a8de Mon Sep 17 00:00:00 2001 From: Tangem Date: Thu, 22 Jun 2023 21:08:10 +0800 Subject: [PATCH] Updated on 2026-08-14 --- .../impl/presentation/viewmodels/AddCustomTokenViewModel.kt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/src/main/java/com/tangem/tap/features/customtoken/impl/presentation/viewmodels/AddCustomTokenViewModel.kt b/app/src/main/java/com/tangem/tap/features/customtoken/impl/presentation/viewmodels/AddCustomTokenViewModel.kt index 47245502cf..6429affe5e 100644 --- a/app/src/main/java/com/tangem/tap/features/customtoken/impl/presentation/viewmodels/AddCustomTokenViewModel.kt +++ b/app/src/main/java/com/tangem/tap/features/customtoken/impl/presentation/viewmodels/AddCustomTokenViewModel.kt @@ -271,7 +271,9 @@ internal class AddCustomTokenViewModel @Inject constructor( type = DerivationPathSelectorType.CUSTOM, ), ) + Blockchain.values() - .filter { blockchain -> blockchain.isSupportedInApp() && !blockchain.isTestnet() } + .filter { blockchain -> + blockchain.isSupportedInApp() && !blockchain.isTestnet() && blockchain != Blockchain.Cardano + } .sortedBy(Blockchain::fullName) .map(::createDerivationPathSelectorAdditionalItem) }