diff --git a/lib/msal-browser/src/interaction_client/StandardInteractionClient.ts b/lib/msal-browser/src/interaction_client/StandardInteractionClient.ts index f8ddab63bd..b12bbe5585 100644 --- a/lib/msal-browser/src/interaction_client/StandardInteractionClient.ts +++ b/lib/msal-browser/src/interaction_client/StandardInteractionClient.ts @@ -441,9 +441,7 @@ export abstract class StandardInteractionClient extends BaseInteractionClient { ); let configResponseMode = null; - if(!this.config.auth.OIDCOptions || - (this.config.auth.OIDCOptions.serverResponseType && - this.config.auth.OIDCOptions.serverResponseType === ServerResponseType.FRAGMENT)) { + if(this.config.auth.OIDCOptions.serverResponseType === ServerResponseType.FRAGMENT) { configResponseMode = ResponseMode.FRAGMENT; } else {