Hello,
I have an asynchronous action in my application so i can use other asynchronous methods inside it and await them. This works generally fine, but if I want to use e.ShowViewParameters.CreatedView to show a view after the action is completed, if the execute method contains any awaits, it will not open the view.
I have attached a test project that showcases this behavior in both Blazor and WinForms. If you click on the Test Action it does not open a view. However, if you remove the await from the execute function, it works just fine.