diff --git a/features/swap/presentation/src/main/java/com/tangem/feature/swap/ui/TransactionCard.kt b/features/swap/presentation/src/main/java/com/tangem/feature/swap/ui/TransactionCard.kt index 258e8f5ddf..18d89a4d06 100644 --- a/features/swap/presentation/src/main/java/com/tangem/feature/swap/ui/TransactionCard.kt +++ b/features/swap/presentation/src/main/java/com/tangem/feature/swap/ui/TransactionCard.kt @@ -262,14 +262,12 @@ private fun Content( } } is TransactionCardType.SendCard -> { - AnimatedContent(targetState = textFieldValue, label = "") { - AutoSizeTextField( - modifier = sumTextModifier, - textFieldValue = it ?: TextFieldValue(), - onAmountChange = { type.onAmountChanged(it) }, - onFocusChange = type.onFocusChanged, - ) - } + AutoSizeTextField( + modifier = sumTextModifier, + textFieldValue = textFieldValue ?: TextFieldValue(), + onAmountChange = { type.onAmountChanged(it) }, + onFocusChange = type.onFocusChanged, + ) } }