Skip to content

Commit 3b2d25b

Browse files
Merge pull request #94 from topcoder-platform/Issue2539
Fix Issue #102
2 parents edbaebe + 8913691 commit 3b2d25b

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/components/LoginNav/index.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -80,11 +80,12 @@ const LoginNav = ({
8080
<div className={styles.loginContainer}>
8181
{loggedIn ? renderLoginPanel() : (
8282
<a
83-
href={authURLs.href}
83+
href='javascript:void(0)'
8484
onClick={(event) => {
8585
const retUrl = encodeURIComponent(window.location.href)
86-
window.location = authURLs.location.replace('%S', retUrl)
86+
window.location = authURLs.location.replace('%S', retUrl).replace('member?', '#!/member?')
8787
event.preventDefault()
88+
return false
8889
}}
8990
>
9091
LOGIN

0 commit comments

Comments
 (0)