Updated on 2026-08-14

This commit is contained in:
Tangem 2026-04-27 11:58:12 +01:00
parent 4fa5989289
commit 440de0f675
17 changed files with 142 additions and 28 deletions

View file

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

View file

@ -538,6 +538,7 @@ internal class CreateWalletStartModelTest {
scanResponse = testScanResponse,
mode = AppRoute.Onboarding.Mode.AddressSync(
userWalletId = testUserWalletId,
isWalletStarted = false,
),
)
),