Fix redirect URI trailing slash to match Azure AD registration

Azure AD has /gsb/ registered, msalConfig had /gsb without slash.
AADSTS50011 error due to mismatch.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Vadym Samoilenko 2026-03-30 11:21:46 +01:00
parent b7db37828b
commit 83bb8f8fa2

View file

@ -4,8 +4,8 @@ export const msalConfig: Configuration = {
auth: {
clientId: '9079054c-9620-4757-a256-23413042f1ef',
authority: 'https://login.microsoftonline.com/e519c2e6-bc6d-4fdf-8d9c-923c2f002385',
redirectUri: 'https://optical-dev.oliver.solutions/gsb',
postLogoutRedirectUri: 'https://optical-dev.oliver.solutions/gsb',
redirectUri: 'https://optical-dev.oliver.solutions/gsb/',
postLogoutRedirectUri: 'https://optical-dev.oliver.solutions/gsb/',
},
cache: {
cacheLocation: 'localStorage',