Skip to content

Commit

Permalink
fix navigation
Browse files Browse the repository at this point in the history
  • Loading branch information
dansiegel committed Apr 13, 2021
1 parent 035cfb5 commit e712596
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions e2e/Forms/src/HelloWorld/App.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ namespace HelloWorld
#endregion
public sealed partial class App
{
public App()
public App()
: this(null)
{
}
Expand All @@ -62,7 +62,8 @@ protected override void OnInitialized()
{
InitializeComponent();

NavigationService.NavigateAsync($"MyTabbedPage").OnNavigationError(OnNavigationError);
// DO NOT COMMIT CHANGES TO THIS!!!!
NavigationService.NavigateAsync($"MyMasterDetail/MyTabbedPage").OnNavigationError(OnNavigationError);
}

private void OnNavigationError(Exception ex)
Expand Down

0 comments on commit e712596

Please sign in to comment.