Skip to content

Commit 48d5474

Browse files
- Suppress CodeQL in NavigationClient.ts
1 parent 10fd5f8 commit 48d5474

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/msal-browser/src/navigation/NavigationClient.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@ export class NavigationClient implements INavigationClient {
4141
options: NavigationOptions
4242
): Promise<boolean> {
4343
if (options.noHistory) {
44-
window.location.replace(url);
44+
window.location.replace(url); // CodeQL [SM03712] Application owner controls the URL. User can't change it.
4545
} else {
46-
window.location.assign(url);
46+
window.location.assign(url); // CodeQL [SM03712] Application owner controls the URL. User can't change it.
4747
}
4848

4949
return new Promise((resolve) => {

0 commit comments

Comments
 (0)