Skip to content

Commit

Permalink
Addressed failing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
shylasummers committed Jul 7, 2023
1 parent 1b6e904 commit a9b690e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/msal-browser/src/controllers/StandardController.ts
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ export class StandardController implements IController {
throw ClientConfigurationError.createCannotSetOIDCOptionsError();
}

var found_hash = hash;
let found_hash = hash;

if(this.config.auth.protocolMode === ProtocolMode.OIDC &&
this.config.auth.OIDCOptions?.serverResponseType === ServerResponseType.QUERY) {
Expand Down
2 changes: 1 addition & 1 deletion lib/msal-browser/src/interaction_client/PopupClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -585,7 +585,7 @@ export class PopupClient extends StandardInteractionClient {
return;
}

let href = popupWindow.location.href;
const href = popupWindow.location.href;
let hash;
if(this.config.auth.protocolMode === ProtocolMode.OIDC &&
this.config.auth.OIDCOptions?.serverResponseType === ServerResponseType.QUERY) {
Expand Down

0 comments on commit a9b690e

Please sign in to comment.