We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 10fd5f8 commit 48d5474Copy full SHA for 48d5474
lib/msal-browser/src/navigation/NavigationClient.ts
@@ -41,9 +41,9 @@ export class NavigationClient implements INavigationClient {
41
options: NavigationOptions
42
): Promise<boolean> {
43
if (options.noHistory) {
44
- window.location.replace(url);
+ window.location.replace(url); // CodeQL [SM03712] Application owner controls the URL. User can't change it.
45
} else {
46
- window.location.assign(url);
+ window.location.assign(url); // CodeQL [SM03712] Application owner controls the URL. User can't change it.
47
}
48
49
return new Promise((resolve) => {
0 commit comments