From 53a73cb9c96cfdb6bb088e183b5e8138d5b9f07f Mon Sep 17 00:00:00 2001 From: Vadym Samoilenko Date: Tue, 17 Mar 2026 16:28:11 +0000 Subject: [PATCH] Fix SSO redirect URI: remove trailing slash to match Azure registration Co-Authored-By: Claude Sonnet 4.6 --- auth.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/auth.js b/auth.js index 78132f2..070bf44 100755 --- a/auth.js +++ b/auth.js @@ -6,7 +6,7 @@ const msalConfig = { auth: { clientId: '9079054c-9620-4757-a256-23413042f1ef', authority: 'https://login.microsoftonline.com/e519c2e6-bc6d-4fdf-8d9c-923c2f002385', - redirectUri: window.location.origin + '/loreal-sla-calculator/', + redirectUri: window.location.origin + '/loreal-sla-calculator', }, cache: { cacheLocation: 'sessionStorage',