I am using the following method in an operation.
protected override async Task OnInitializedAsync()
{
forecasts = await Http.GetJsonAsync<WeatherForecast[]>("sample-data/weather.json");
await someOperation(); // this action is not perfomred
}
Any suggestion on this query