### Is there an existing issue for this? - [x] I have searched the existing issues ### Describe the bug Since .NET 10 Preview 4, where NavigationManager.NavigateTo no longer throws a NavigationException, NavigateTo no longer has any effect in SSR mode, if called after an aynchronous method call in OnInitializedAsync. ### Expected Behavior NavigationManager.NavigateTo navigates to the specified route. ### Steps To Reproduce Doesn't work: ```c# @inject NavigationManager NavigationManager @code { protected override async Task OnInitializedAsync() { await Task.Delay(1000); NavigationManager.NavigateTo("any-route"); //Does nothing } } ``` Works correctly: ```c# @inject NavigationManager NavigationManager @code { protected override async Task OnInitializedAsync() { NavigationManager.NavigateTo("any-route"); //Works correctly await Tasl.Delay(1000); } ``` ### Exceptions (if any) _No response_ ### .NET Version 10.0.100-preview.5.25277.114 ### Anything else? _No response_