@* * Copyright 2024 Ivy Collective * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. *@ @using Blazored.LocalStorage; @inject ILocalStorageService localStorage; @inject SettingsService settings; @implements IDisposable An error occurred

An error occurred

If you're able to, contact a developer to get the issue fixed. You can also reload the page to try again.

Not found

Page Not Found

Head back home?
@code { protected override async Task OnInitializedAsync() { var settingsStr = await localStorage.GetItemAsync("settings"); if (settingsStr != null) { settings.Deserialize(settingsStr); } } protected override void OnInitialized() { settings.OnSettingsChanged += StateHasChanged; } public void Dispose() { settings.OnSettingsChanged -= StateHasChanged; } }