diff --git a/features/send-v2/impl/src/main/java/com/tangem/features/send/v2/subcomponents/amount/model/SendAmountModel.kt b/features/send-v2/impl/src/main/java/com/tangem/features/send/v2/subcomponents/amount/model/SendAmountModel.kt index cd838ffa32..f3271ad09f 100644 --- a/features/send-v2/impl/src/main/java/com/tangem/features/send/v2/subcomponents/amount/model/SendAmountModel.kt +++ b/features/send-v2/impl/src/main/java/com/tangem/features/send/v2/subcomponents/amount/model/SendAmountModel.kt @@ -142,8 +142,8 @@ internal class SendAmountModel @Inject constructor( ) { newCryptoCurrencyStatus, account, isAccountsMode -> maxAmountBoundary = MaxEnterAmountConverter().convert(newCryptoCurrencyStatus) cryptoCurrencyStatus = newCryptoCurrencyStatus - initMinBoundary(cryptoCurrencyStatus, account, isAccountsMode) - }.flowOn(dispatchers.default) + initMinBoundary(newCryptoCurrencyStatus, account, isAccountsMode) + }.flowOn(dispatchers.main) .launchIn(modelScope) }