Updated on 2026-08-14

This commit is contained in:
Tangem 2023-02-22 18:58:47 +03:00
parent c5699036b7
commit a677bda4ef

View file

@ -152,8 +152,15 @@ private fun handleOnboardingSaltPayAction(anyAction: Action, appState: () -> App
}
Analytics.send(Onboarding.PinCodeSet())
var nextStep = SaltPayActivationStep.KycIntro
nextStep = saltPayManager.update(nextStep, state.amountToClaim).successOr {
onException(it.error)
return@launch
}
handleInProgress = false
dispatchOnMain(OnboardingSaltPayAction.SetStep(SaltPayActivationStep.KycIntro))
dispatchOnMain(OnboardingSaltPayAction.SetStep(nextStep))
}
}
is OnboardingSaltPayAction.OpenUtorgKYC -> {