Updated on 2026-08-14
This commit is contained in:
parent
4ed2144ca3
commit
575081de3e
4 changed files with 4 additions and 4 deletions
|
|
@ -108,7 +108,7 @@ private fun Content(state: TangemPayCloseCardUM) {
|
|||
modifier = Modifier.fillMaxWidth(),
|
||||
variant = TangemButton.Variant.Secondary,
|
||||
size = TangemButton.Size.X12,
|
||||
text = resourceReference(R.string.tangem_pay_close_card_popup_secondary_button_title),
|
||||
text = resourceReference(R.string.common_cancel),
|
||||
isEnabled = !state.isClosingInProgress,
|
||||
onClick = state.onDismissRequest,
|
||||
)
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@ internal fun TangemPayChangePinCodeSuccessScreenV2(onClose: () -> Unit, modifier
|
|||
modifier = modifier,
|
||||
title = resourceReference(R.string.tangempay_card_details_change_pin_success_title),
|
||||
subtitle = resourceReference(R.string.tangempay_card_details_change_pin_success_description),
|
||||
buttonText = resourceReference(R.string.common_close),
|
||||
buttonText = resourceReference(R.string.common_done),
|
||||
onButtonClick = onClose,
|
||||
titleTestTag = TangemPayTestTags.PIN_SUCCESS_TITLE,
|
||||
subtitleTestTag = TangemPayTestTags.PIN_SUCCESS_DESCRIPTION,
|
||||
|
|
|
|||
|
|
@ -334,7 +334,7 @@ internal class GetMultiWalletWarningsFactory @Inject constructor(
|
|||
addIf(
|
||||
element = WalletNotification.Informational.MissingAddresses(
|
||||
tangemIcon = walletInterationIcon(userWallet),
|
||||
missingAddressesCount = currencies.count(),
|
||||
missingAddressesCount = currencies.distinctBy { it.network.id }.count(),
|
||||
onGenerateClick = {
|
||||
clickIntents.onGenerateMissedAddressesClick(
|
||||
userWalletId = userWallet.walletId,
|
||||
|
|
|
|||
|
|
@ -213,7 +213,7 @@ internal class GetWalletNotificationsFactory @Inject constructor(
|
|||
addIf(
|
||||
element = WalletNotificationUM.MissingAddresses(
|
||||
tangemIcon = walletInterationIcon(userWallet),
|
||||
missingAddressesCount = currencies.count(),
|
||||
missingAddressesCount = currencies.distinctBy { it.network.id }.count(),
|
||||
onGenerateClick = {
|
||||
clickIntents.onGenerateMissedAddressesClick(
|
||||
userWalletId = userWallet.walletId,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue