Skip to content

Commit

Permalink
revision changes
Browse files Browse the repository at this point in the history
  • Loading branch information
accbjt committed Jul 24, 2024
1 parent 0eb7efa commit 3b4842c
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ function useSocialSignIn(redirectURL, isOIDC, socialSignOnIn, onError = () => {}
loginByOIDC();
} else {
const validatedURL = validateURL(redirectURL);

window.location = validatedURL;
}
} catch (e) {
Expand Down Expand Up @@ -52,7 +51,6 @@ function useSocialSignIn(redirectURL, isOIDC, socialSignOnIn, onError = () => {}
loginByOIDC();
} else {
const validatedURL = validateURL(redirectURL);

window.location = validatedURL;
}
}),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ function AccountManagement({ customFields }) {
const checkLoggedInStatus = () =>
Identity.isLoggedIn().then((isLoggedIn) => {
if (!isLoggedIn) {

window.location = redirectURL;
return;
}
Expand Down
1 change: 0 additions & 1 deletion blocks/identity-block/features/login/default.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,6 @@ const Login = ({ customFields }) => {
loginByOIDC();
} else {
const validatedURL = validateURL(loginRedirect);

window.location = validatedURL;
}
})
Expand Down

0 comments on commit 3b4842c

Please sign in to comment.