Blazor OnInitializedAsync Componente de representación de excepción no controlada: No se puede esperar en los monitores en este tiempo de ejecución.

// Avoid .Result, it can easily deadlock.
// This error is because it's not supported by single threaded Web Assembly

private static async Task CalApi()
{
   	var response = await httpClient.GetAsync(path); 
  	if (response.IsSuccessStatusCode) { ... }
}
Av3