Skip to content

Commit

Permalink
fix: Fix old regression in SetActiveSection.
Browse files Browse the repository at this point in the history
  • Loading branch information
jeanplevesque committed Feb 22, 2024
1 parent 763f83a commit 744861c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public static async Task<ISectionStackNavigator> SetActiveSection(this ISections
else
{
// If the section root page isn't in the stack, clear everything and navigate to it.
await sectionNavigator.Navigate(ct, StackNavigatorRequest.GetNavigateRequest(viewModelProvider, suppressTransitions: true, clearBackStack: true));
await sectionNavigator.Navigate(ct, StackNavigatorRequest.GetNavigateRequest(viewModelType, viewModelProvider, suppressTransitions: true, clearBackStack: true));
}
}

Expand Down

0 comments on commit 744861c

Please sign in to comment.