We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents edbaebe + 8913691 commit 3b2d25bCopy full SHA for 3b2d25b
src/components/LoginNav/index.js
@@ -80,11 +80,12 @@ const LoginNav = ({
80
<div className={styles.loginContainer}>
81
{loggedIn ? renderLoginPanel() : (
82
<a
83
- href={authURLs.href}
+ href='javascript:void(0)'
84
onClick={(event) => {
85
const retUrl = encodeURIComponent(window.location.href)
86
- window.location = authURLs.location.replace('%S', retUrl)
+ window.location = authURLs.location.replace('%S', retUrl).replace('member?', '#!/member?')
87
event.preventDefault()
88
+ return false
89
}}
90
>
91
LOGIN
0 commit comments