about summary refs log tree commit diff
path: root/MatrixRoomUtils.Web/Pages/LoginPage.razor
diff options
context:
space:
mode:
Diffstat (limited to 'MatrixRoomUtils.Web/Pages/LoginPage.razor')
-rw-r--r--MatrixRoomUtils.Web/Pages/LoginPage.razor6
1 files changed, 3 insertions, 3 deletions
diff --git a/MatrixRoomUtils.Web/Pages/LoginPage.razor b/MatrixRoomUtils.Web/Pages/LoginPage.razor
index e19dd04..9730cbe 100644
--- a/MatrixRoomUtils.Web/Pages/LoginPage.razor
+++ b/MatrixRoomUtils.Web/Pages/LoginPage.razor
@@ -1,6 +1,6 @@
 @page "/Login"
 @using System.Text.Json
-@using MatrixRoomUtils.Core.Responses
+@using LibMatrix.Responses
 @using MatrixRoomUtils.Web.Shared.SimpleComponents
 @inject ILocalStorageService LocalStorage
 @inject IJSRuntime JsRuntime
@@ -49,7 +49,7 @@
     (string homeserver, string username, string password) newRecordInput = ("", "", "");
 
     List<LoginResponse> LoggedInSessions { get; set; } = new();
-    
+
     async Task Login() {
         var loginTasks = records.Select(async record => {
             var (homeserver, username, password) = record;
@@ -97,4 +97,4 @@
         newRecordInput = ("", "", "");
     }
 
-}
\ No newline at end of file
+}