diff --git a/features/send/impl/src/main/java/com/tangem/features/send/impl/presentation/state/SendNotification.kt b/features/send/impl/src/main/java/com/tangem/features/send/impl/presentation/state/SendNotification.kt index 631191ad66..e59bd0e517 100644 --- a/features/send/impl/src/main/java/com/tangem/features/send/impl/presentation/state/SendNotification.kt +++ b/features/send/impl/src/main/java/com/tangem/features/send/impl/presentation/state/SendNotification.kt @@ -36,7 +36,10 @@ internal sealed class SendNotification(val config: NotificationConfig) { data class MinimumAmountError(val amount: String) : Error( title = resourceReference(R.string.send_notification_invalid_amount_title), - subtitle = resourceReference(R.string.send_notification_invalid_minimum_amount_text, wrappedList(amount)), + subtitle = resourceReference( + R.string.send_notification_invalid_minimum_amount_text, + wrappedList(amount, amount), + ), ) data class ReserveAmountError(val amount: String) : Error(