Menu not removing filter

If you are performing the filtering in OnInitialized or OnInitializedAsync then it won't be executed by navigating to the same page. This is how the Blazor lifecycle works - those methods are called only once. You can try using a different method such as OnParametersSet or OnParametersSetAsync.

1 Like