Make Nodes screen the root of the nav graph (#2954)

This commit is contained in:
Phil Oliver 2025-09-04 07:13:17 -04:00 committed by GitHub
parent 04c6b1d0ca
commit 7bffcb1fd6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -74,7 +74,7 @@ fun NavGraph(
mapViewModel: MapViewModel = hiltViewModel(),
navController: NavHostController = rememberNavController(),
) {
NavHost(navController = navController, startDestination = ConnectionsRoutes.ConnectionsGraph, modifier = modifier) {
NavHost(navController = navController, startDestination = NodesRoutes.NodesGraph, modifier = modifier) {
contactsGraph(navController, uIViewModel)
nodesGraph(navController, uIViewModel)
mapGraph(navController, uIViewModel, mapViewModel)