Skip to content

Commit

Permalink
fixed e2e app using the auto register attribute
Browse files Browse the repository at this point in the history
  • Loading branch information
brianlagunas committed Oct 14, 2020
1 parent 28008c7 commit 833c11d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion e2e/Forms/src/HelloDialog/HelloDialogModule.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
namespace HelloDialog
{
[ModuleDependency("HelloPageDialogModule")]
[AutoRegisterForNavigation]
public class HelloDialogModule : IModule
{
public void OnInitialized(IContainerProvider containerProvider)
Expand All @@ -18,6 +17,7 @@ public void RegisterTypes(IContainerRegistry containerRegistry)
{
containerRegistry.RegisterDialog<DemoDialog, DemoDialogViewModel>();
containerRegistry.RegisterDialog<UserAlert, UserAlertViewModel>();
containerRegistry.RegisterForNavigation<DialogDemoPage, DialogDemoPageViewModel>();
}
}
}

0 comments on commit 833c11d

Please sign in to comment.