1 files changed, 3 insertions, 3 deletions
diff --git a/MatrixRoomUtils.Web/Program.cs b/MatrixUtils.Web/Program.cs
index 277e4d1..e63d191 100644
--- a/MatrixRoomUtils.Web/Program.cs
+++ b/MatrixUtils.Web/Program.cs
@@ -3,8 +3,8 @@ using System.Text.Json.Serialization;
using Blazored.LocalStorage;
using Blazored.SessionStorage;
using LibMatrix.Services;
-using MatrixRoomUtils.Web;
-using MatrixRoomUtils.Web.Classes;
+using MatrixUtils.Web;
+using MatrixUtils.Web.Classes;
using Microsoft.AspNetCore.Components.Web;
using Microsoft.AspNetCore.Components.WebAssembly.Hosting;
@@ -53,5 +53,5 @@ builder.Services.AddScoped<TieredStorageService>(x =>
);
builder.Services.AddRoryLibMatrixServices();
-builder.Services.AddScoped<MRUStorageWrapper>();
+builder.Services.AddScoped<RMUStorageWrapper>();
await builder.Build().RunAsync();
|