Skip to content

Commit fd0b71d

Browse files
committed
fix: home navigation
1 parent a97cfb9 commit fd0b71d

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

app/src/main/java/to/bitkit/ui/ContentView.kt

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -637,7 +637,12 @@ private fun RootNavHost(
637637
composableWithDefaultTransitions<Routes.SettingUp> {
638638
SettingUpScreen(
639639
viewModel = transferViewModel,
640-
onContinueClick = { navController.popBackStack<Routes.TransferRoot>(inclusive = true) },
640+
onContinueClick = {
641+
navController.navigateToHome(
642+
walletNavController = walletNavController,
643+
nestedRoute = HomeRoutes.Home
644+
)
645+
}
641646
)
642647
}
643648
composableWithDefaultTransitions<Routes.Funding> {

0 commit comments

Comments
 (0)