Fixes an issue with two home screens interfering with flow collections. For some reason it was only a problem because this route matches the starting route.

This commit is contained in:
Vitor Pamplona
2025-05-14 17:00:36 -04:00
parent e0449a9d44
commit 3c5b9dbca6
@@ -107,7 +107,9 @@ class Nav(
override fun newStack(route: Route) {
scope.launch {
controller.navigate(route) {
popUpTo(Route.Home)
popUpTo(Route.Home) {
inclusive = true
}
launchSingleTop = true
}
}