Updated on 2026-08-14
This commit is contained in:
parent
31326ebe59
commit
f715a74ce0
3 changed files with 51 additions and 5 deletions
|
|
@ -54,11 +54,11 @@ sealed class WalletNotification(val config: NotificationConfig) {
|
|||
data class SeedPhraseNotification(val onDeclineClick: () -> Unit, val onConfirmClick: () -> Unit) : Critical(
|
||||
title = resourceReference(R.string.warning_seedphrase_issue_title),
|
||||
subtitle = resourceReference(R.string.warning_seedphrase_issue_message),
|
||||
buttonsState = NotificationConfig.ButtonsState.PairButtonsConfig(
|
||||
primaryText = resourceReference(R.string.common_yes),
|
||||
onPrimaryClick = onConfirmClick,
|
||||
secondaryText = resourceReference(R.string.common_no),
|
||||
onSecondaryClick = onDeclineClick,
|
||||
buttonsState = NotificationConfig.ButtonsState.SecondaryPairButtonsConfig(
|
||||
leftText = resourceReference(R.string.common_no),
|
||||
onLeftClick = onDeclineClick,
|
||||
rightText = resourceReference(R.string.common_yes),
|
||||
onRightClick = onConfirmClick,
|
||||
),
|
||||
)
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue