diff options
author | TheArcaneBrony <myrainbowdash949@gmail.com> | 2023-06-30 03:36:58 +0200 |
---|---|---|
committer | TheArcaneBrony <myrainbowdash949@gmail.com> | 2023-06-30 03:36:58 +0200 |
commit | bb8c2637af3b7982e7a4b2fd15e2fbec613d0848 (patch) | |
tree | b8075ba7e507aad3f96f354712ad920ac421e474 /MatrixRoomUtils.Web/_Imports.razor | |
parent | Update stuff (diff) | |
download | MatrixUtils-bb8c2637af3b7982e7a4b2fd15e2fbec613d0848.tar.xz |
Todays progress
Diffstat (limited to 'MatrixRoomUtils.Web/_Imports.razor')
-rw-r--r-- | MatrixRoomUtils.Web/_Imports.razor | 19 |
1 files changed, 5 insertions, 14 deletions
diff --git a/MatrixRoomUtils.Web/_Imports.razor b/MatrixRoomUtils.Web/_Imports.razor index 155837b..85c015e 100644 --- a/MatrixRoomUtils.Web/_Imports.razor +++ b/MatrixRoomUtils.Web/_Imports.razor @@ -13,21 +13,12 @@ @using MatrixRoomUtils.Web.Shared @using MatrixRoomUtils.Core.RoomTypes @using MatrixRoomUtils.Core.Extensions +@using MatrixRoomUtils.Core.Services @using LinkButton = MatrixRoomUtils.Web.Shared.SimpleComponents.LinkButton - - -@inject ILocalStorageService LocalStorage @inject NavigationManager NavigationManager - -@code -{ - protected override async Task OnInitializedAsync() { - if (!RuntimeCache.WasLoaded) { - await LocalStorageWrapper.LoadFromLocalStorage(LocalStorage); - Console.WriteLine("Loaded from local storage"); - StateHasChanged(); - } - } -} \ No newline at end of file +@inject MRUStorageWrapper MRUStorage +@inject HomeserverProviderService HomeserverProvider +@inject TieredStorageService TieredStorage +@inject HomeserverResolverService HomeserverResolver \ No newline at end of file |