From f2cef4f266a8bb7adf59b01c80caf93ab446f236 Mon Sep 17 00:00:00 2001 From: Oliver Date: Wed, 14 Jan 2026 09:56:14 +1100 Subject: [PATCH] [UI] Improved flow for 409 errors (#11132) --- src/frontend/src/functions/auth.tsx | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/frontend/src/functions/auth.tsx b/src/frontend/src/functions/auth.tsx index f1c9335d50..b8969aed3b 100644 --- a/src/frontend/src/functions/auth.tsx +++ b/src/frontend/src/functions/auth.tsx @@ -119,12 +119,13 @@ export async function doBasicLogin( await handlePossibleMFAError(err); break; case 409: + doLogout(navigate); notifications.show({ - title: t`Already logged in`, - message: t`There is a conflicting session on the server for this browser. Please logout of that first.`, + title: t`Logged Out`, + message: t`There was a conflicting session for this browser, which has been logged out.`, color: 'red', id: 'auth-login-error', - autoClose: false + autoClose: true }); break; default: