Blazor UriHelper.NavigateTo is calling the page twice
问题 I created a new Blazor Server Side Application in Preview 8. When I call the UriHelper.NavigateTo to go to the counter page from the Index.razor page, the counter page is called twice. In the Index.razor page I have this code: @code{ protected async override Task OnInitializedAsync() { UriHelper.NavigateTo("/counter"); } } Then in the counter page I added the following code with a breakpoint in it: protected override void OnInitialized() { } My expectation is to call the counter page only one