From 165a228f8604cfcec23cff6df46bb49ea076025d Mon Sep 17 00:00:00 2001 From: Tangem Date: Fri, 7 Nov 2025 12:51:53 +0500 Subject: [PATCH] Updated on 2026-08-14 --- .../features/hotwallet/upgradewallet/UpgradeWalletModel.kt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/features/hot-wallet/impl/src/main/kotlin/com/tangem/features/hotwallet/upgradewallet/UpgradeWalletModel.kt b/features/hot-wallet/impl/src/main/kotlin/com/tangem/features/hotwallet/upgradewallet/UpgradeWalletModel.kt index 6939c1daf0..45ff3cb825 100644 --- a/features/hot-wallet/impl/src/main/kotlin/com/tangem/features/hotwallet/upgradewallet/UpgradeWalletModel.kt +++ b/features/hot-wallet/impl/src/main/kotlin/com/tangem/features/hotwallet/upgradewallet/UpgradeWalletModel.kt @@ -3,6 +3,7 @@ package com.tangem.features.hotwallet.upgradewallet import com.tangem.common.core.TangemError import com.tangem.common.core.TangemSdkError import com.tangem.common.doOnFailure +import com.tangem.common.doOnResult import com.tangem.common.doOnSuccess import com.tangem.common.routing.AppRoute import com.tangem.core.decompose.di.ModelScoped @@ -112,6 +113,9 @@ internal class UpgradeWalletModel @Inject constructor( .doOnFailure { showCardVerificationFailedDialog(it) } + .doOnResult { + setLoading(false) + } } }