diff --git a/features/swap/impl/src/main/java/com/tangem/feature/swap/model/SwapModel.kt b/features/swap/impl/src/main/java/com/tangem/feature/swap/model/SwapModel.kt index c23995df13..a54036ab54 100644 --- a/features/swap/impl/src/main/java/com/tangem/feature/swap/model/SwapModel.kt +++ b/features/swap/impl/src/main/java/com/tangem/feature/swap/model/SwapModel.kt @@ -1834,12 +1834,8 @@ internal class SwapModel @Inject constructor( decimals = fromCurrency.status.currency.decimals, percent = percent, ) - applyCryptoAmount( - SwapAmount( - value = newValue, - decimals = fromCurrency.status.currency.decimals, - ).formatToUIRepresentation(), - ) + + applyCryptoAmount(newValue.toPlainString()) } private fun onReduceAmountClicked(newAmount: SwapAmount, reduceBalanceBy: BigDecimal = BigDecimal.ZERO) {