Skip to content

Commit

Permalink
Removed: strict checking for logout value
Browse files Browse the repository at this point in the history
  • Loading branch information
ymaheshwari1 committed Sep 21, 2023
1 parent 5e9b12c commit d37c4b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/store/modules/user/actions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ const actions: ActionTree<UserState, RootState> = {
// Added logic to remove the `//` from the resp as in case of get request we are having the extra characters and in case of post we are having 403
resp = JSON.parse(resp.startsWith('//') ? resp.replace('//', '') : resp)

if(resp.logoutAuthType === 'SAML2SSO') {
if(resp.logoutAuthType == 'SAML2SSO') {
redirectionUrl = resp.logoutUrl
}
}
Expand Down

0 comments on commit d37c4b9

Please sign in to comment.