Only remove the loginToken query parameter after SSO

Leave other query parameters untouched.
This commit is contained in:
Paulo Pinto 2022-12-13 16:41:38 +00:00
parent 803730836c
commit 7a33881e14
No known key found for this signature in database

View File

@ -153,8 +153,11 @@ export class URLRouter<T extends {session: string | boolean}> implements IURLRou
} }
normalizeUrl(): void { normalizeUrl(): void {
// Remove any queryParameters from the URL const url = new URL(window.location.href);
// Gets rid of the loginToken after SSO
this._history.replaceUrlSilently(`${window.location.origin}/${window.location.hash}`); // Remove the loginToken query parameter from the URL after SSO.
url.searchParams.delete("loginToken");
this._history.replaceUrlSilently(url.toString());
} }
} }