From 65743285e41e60b65ccc554c8a8d33151be0f3ad Mon Sep 17 00:00:00 2001 From: Tangem Date: Mon, 8 Apr 2024 15:31:30 +0500 Subject: [PATCH] Updated on 2026-08-14 --- .../features/send/impl/presentation/state/SendAlertState.kt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/features/send/impl/src/main/java/com/tangem/features/send/impl/presentation/state/SendAlertState.kt b/features/send/impl/src/main/java/com/tangem/features/send/impl/presentation/state/SendAlertState.kt index d3adc2e74c..42a3494b50 100644 --- a/features/send/impl/src/main/java/com/tangem/features/send/impl/presentation/state/SendAlertState.kt +++ b/features/send/impl/src/main/java/com/tangem/features/send/impl/presentation/state/SendAlertState.kt @@ -12,7 +12,9 @@ internal sealed class SendAlertState { abstract val title: TextReference? abstract val message: TextReference open val confirmButtonText: TextReference = resourceReference(id = R.string.common_ok) + // open val cancelButtonText: TextReference = resourceReference(id = R.string.common_cancel) open val onConfirmClick: (() -> Unit)? = null + // open val onCancelClick: (() -> Unit)? = null data class GenericError( override val title: TextReference? = resourceReference(id = R.string.send_alert_transaction_failed_title),