diff --git a/features/send/impl/src/main/java/com/tangem/features/send/impl/presentation/state/confirm/SendNotificationFactory.kt b/features/send/impl/src/main/java/com/tangem/features/send/impl/presentation/state/confirm/SendNotificationFactory.kt index 0d147eb6fd..4abd80f5cd 100644 --- a/features/send/impl/src/main/java/com/tangem/features/send/impl/presentation/state/confirm/SendNotificationFactory.kt +++ b/features/send/impl/src/main/java/com/tangem/features/send/impl/presentation/state/confirm/SendNotificationFactory.kt @@ -247,7 +247,7 @@ internal class SendNotificationFactory( val totalAmount = feeAmount + receivedAmount val change = balance - totalAmount val isChangeLowerThanDust = change < dustValue && change != BigDecimal.ZERO - val isShowWarning = totalAmount < dustValue || isChangeLowerThanDust + val isShowWarning = receivedAmount < dustValue || isChangeLowerThanDust if (isShowWarning) { add( SendNotification.Error.MinimumAmountError(dustValue.toPlainString()),