Basically, whenever I'm currently using an override for OnItializedAsync I'm getting
FLXW01: Overriding OnInitialized or OnInitializedAsync without calling base is not allowed
even when the function looks like this:
protected override Task OnInitializedAsync()
{
return base.OnInitializedAsync();
}
Also doesn't seem to be an actual problem because the whole thing compiles and runs anyway.