@using Microsoft.AspNetCore.Components.ProtectedBrowserStorage @inject IVariableService VariableService @inject IStorageService StorageService @if (isLoaded) { } Not found

Sorry, there's nothing at this address.

@code { private bool isLoaded = false; protected override async Task OnInitializedAsync() { await VariableService.Load(); await StorageService.Load(); isLoaded = true; StateHasChanged(); } }