Updated on 2026-08-14

This commit is contained in:
Tangem 2025-11-07 12:51:53 +05:00
parent d5ca4e59b5
commit 165a228f86

View file

@ -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)
}
}
}