From 06603181c9f93a8a79f114e563aecab3abad2195 Mon Sep 17 00:00:00 2001 From: Tangem Date: Tue, 2 Apr 2024 18:01:19 +0500 Subject: [PATCH] Updated on 2026-08-14 --- .../send/impl/presentation/state/SendNotification.kt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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(