Updated on 2026-08-14
This commit is contained in:
parent
9adbde6e55
commit
405912fd54
1 changed files with 2 additions and 2 deletions
|
|
@ -43,8 +43,8 @@ internal class DefaultOnboardingStepperComponent @AssistedInject constructor(
|
|||
|
||||
componentScope.launch {
|
||||
val cardInfo = getWalletMetaInfoUseCase(params.scanResponse).getOrNull() ?: return@launch
|
||||
val userWalletId = cardInfo.userWalletId ?: return@launch
|
||||
val visaCustomerId = getTangemPayCustomerIdUseCase(userWalletId).getOrNull()
|
||||
val userWalletId = cardInfo.userWalletId
|
||||
val visaCustomerId = userWalletId?.let { id -> getTangemPayCustomerIdUseCase(id).getOrNull() }
|
||||
sendFeedbackEmailUseCase(
|
||||
if (params.scanResponse.card.isVisa && !visaCustomerId.isNullOrEmpty()) {
|
||||
FeedbackEmailType.Visa.Activation(walletMetaInfo = cardInfo, customerId = visaCustomerId)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue