diff options
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 |