Updated on 2026-08-14

This commit is contained in:
Tangem 2025-02-21 16:03:19 +05:00
parent 054a7f982f
commit a7ab7abbfb
23 changed files with 165 additions and 30 deletions

View file

@ -15,8 +15,8 @@ import com.tangem.features.onboarding.v2.entry.OnboardingEntryComponent
import com.tangem.features.onramp.component.*
import com.tangem.features.pushnotifications.api.navigation.PushNotificationsRouter
import com.tangem.features.send.api.navigation.SendRouter
import com.tangem.features.swap.SwapComponent
import com.tangem.features.staking.api.StakingComponent
import com.tangem.features.swap.SwapComponent
import com.tangem.features.tester.api.TesterRouter
import com.tangem.features.tokendetails.navigation.TokenDetailsRouter
import com.tangem.features.wallet.navigation.WalletRouter
@ -208,6 +208,7 @@ internal class ChildFactory @Inject constructor(
params = StoriesComponent.Params(
storyId = route.storyId,
nextScreen = route.nextScreen,
screenSource = route.screenSource,
),
componentFactory = storiesComponentFactory,
)
@ -231,6 +232,7 @@ internal class ChildFactory @Inject constructor(
currencyTo = route.currencyTo,
userWalletId = route.userWalletId,
isInitialReverseOrder = route.isInitialReverseOrder,
screenSource = route.screenSource,
),
componentFactory = swapComponentFactory,
)
@ -348,6 +350,7 @@ internal class ChildFactory @Inject constructor(
currencyTo = route.currencyTo,
userWalletId = route.userWalletId,
isInitialReverseOrder = route.isInitialReverseOrder,
screenSource = route.screenSource,
),
componentFactory = swapComponentFactory,
)
@ -464,6 +467,7 @@ internal class ChildFactory @Inject constructor(
params = StoriesComponent.Params(
storyId = route.storyId,
nextScreen = route.nextScreen,
screenSource = route.screenSource,
),
componentFactory = storiesComponentFactory,
)