Skip to content

Commit

Permalink
fix: url_redirect (#17965)
Browse files Browse the repository at this point in the history
  • Loading branch information
amina-deriv authored Jan 9, 2025
1 parent 48d0f0c commit 8eb1943
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ const ProofOfIdentityFlow = observer(() => {
identity.status === 'none' || identity.status === 'required'
? ACCOUNTS_OS_POI_URL
: ACCOUNTS_OS_POI_STATUS_URL;
window.location.href = getFormattedURL(redirect_url);
window.location.replace(getFormattedURL(redirect_url));
} else {
return <ProofOfIdentity />;
}
Expand Down

0 comments on commit 8eb1943

Please sign in to comment.