From 9e23eebced8705f414dcb55d2462d7b2bfddaea0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fernando=20Fern=C3=A1ndez?= Date: Tue, 9 Jan 2024 23:51:39 +0100 Subject: [PATCH] fix: login with incorrect credentials stuck in endless loop MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Fernando Fernández --- frontend/src/plugins/remote/auth/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/src/plugins/remote/auth/index.ts b/frontend/src/plugins/remote/auth/index.ts index 4cb43a955c5..bee4e877563 100644 --- a/frontend/src/plugins/remote/auth/index.ts +++ b/frontend/src/plugins/remote/auth/index.ts @@ -216,6 +216,7 @@ class RemotePluginAuth { } useSnackbar(errorMessage, 'error'); + throw error; } } }