Updated on 2026-08-14
This commit is contained in:
commit
858a91d095
22 changed files with 387 additions and 103 deletions
|
|
@ -25,7 +25,6 @@ import com.tangem.features.managetokens.component.ManageTokensComponent
|
|||
import com.tangem.features.managetokens.component.ManageTokensMode
|
||||
import com.tangem.features.managetokens.component.ManageTokensSource
|
||||
import com.tangem.features.nft.component.NFTComponent
|
||||
import com.tangem.features.onboarding.v2.addresssync.AddressSyncComponent
|
||||
import com.tangem.features.onboarding.v2.entry.OnboardingEntryComponent
|
||||
import com.tangem.features.onramp.component.*
|
||||
import com.tangem.features.pushnotifications.api.PushNotificationsComponent
|
||||
|
|
@ -112,7 +111,6 @@ internal class ChildFactory @Inject constructor(
|
|||
private val kycComponentFactory: KycComponent.Factory,
|
||||
private val yieldSupplyEntryComponentFactory: YieldSupplyEntryComponent.Factory,
|
||||
private val feedEntryComponentFactory: FeedEntryComponent.Factory,
|
||||
private val addressSyncComponentFactory: AddressSyncComponent.Factory,
|
||||
) {
|
||||
|
||||
@Suppress("LongMethod", "CyclomaticComplexMethod")
|
||||
|
|
@ -262,6 +260,8 @@ internal class ChildFactory @Inject constructor(
|
|||
OnboardingEntryComponent.Mode.ContinueFinalize
|
||||
is AppRoute.Onboarding.Mode.UpgradeHotWallet ->
|
||||
OnboardingEntryComponent.Mode.UpgradeHotWallet(mode.userWalletId)
|
||||
is AppRoute.Onboarding.Mode.AddressSync ->
|
||||
OnboardingEntryComponent.Mode.AddressSync
|
||||
},
|
||||
),
|
||||
componentFactory = onboardingEntryComponentFactory,
|
||||
|
|
@ -694,13 +694,6 @@ internal class ChildFactory @Inject constructor(
|
|||
componentFactory = feedEntryComponentFactory,
|
||||
)
|
||||
}
|
||||
is AppRoute.AddressSync -> {
|
||||
createComponentChild(
|
||||
context = context,
|
||||
params = AddressSyncComponent.Params(data = Unit),
|
||||
componentFactory = addressSyncComponentFactory,
|
||||
)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue