Updated on 2026-08-14

This commit is contained in:
Tangem 2026-04-23 10:45:35 +01:00
parent e1c819d421
commit 0e169a5418
19 changed files with 292 additions and 37 deletions

View file

@ -239,7 +239,7 @@ internal class CreateWalletStartModel @Inject constructor(
val route = if (onboardingV2FeatureToggles.isAddressSyncEnabled) {
AppRoute.Onboarding(
scanResponse = scanResponse,
mode = AppRoute.Onboarding.Mode.AddressSync,
mode = AppRoute.Onboarding.Mode.AddressSync(userWalletId = userWallet.walletId),
)
} else {
AppRoute.Wallet

View file

@ -536,7 +536,9 @@ internal class CreateWalletStartModelTest {
routes = arrayOf(
AppRoute.Onboarding(
scanResponse = testScanResponse,
mode = AppRoute.Onboarding.Mode.AddressSync,
mode = AppRoute.Onboarding.Mode.AddressSync(
userWalletId = testUserWalletId,
),
)
),
onComplete = any()