Skip to content

Commit

Permalink
ISTE-11: Added or operator
Browse files Browse the repository at this point in the history
  • Loading branch information
anilsingha-eGov committed Apr 30, 2024
1 parent 4c96201 commit 39c97e7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export const UserService = {
},
logout: async () => {
const userType = UserService.getType();
const logoutRedirectURL = window?.globalConfigs?.getConfig("LOGOUT_REDIRECT_URL")
const logoutRedirectURL = window?.globalConfigs?.getConfig("LOGOUT_REDIRECT_URL") || window?.contextPath;
try {
await UserService.logoutUser();
} catch (e) {
Expand Down

0 comments on commit 39c97e7

Please sign in to comment.