Updated on 2026-08-14

This commit is contained in:
Tangem 2025-11-26 11:57:04 +04:00
parent b283f87b1b
commit bf7c1f2f62
13 changed files with 25 additions and 72 deletions

View file

@ -27,7 +27,7 @@ class DefaultKycComponent @AssistedInject constructor(
init {
componentScope.launch {
model.uiState.drop(1).collectLatest { startInfo ->
startInfo?.let { launchSdk(startInfo) }
if (startInfo != null) launchSdk(startInfo)
router.pop()
}
}