Skip to content

Commit

Permalink
Merge pull request #6875 from topcoder-platform/PROD-4234
Browse files Browse the repository at this point in the history
Hot fix for PROD-4234
  • Loading branch information
jmgasper authored May 4, 2023
2 parents 9192e1f + c3dc01b commit ff5bac4
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -366,6 +366,7 @@ workflows:
- universal_nav
- marathon_match_submission_download
- feat/badges-box
- PROD-4234
# This is beta env for production soft releases
- "build-prod-beta":
context : org-global
Expand Down
2 changes: 1 addition & 1 deletion src/shared/components/Gigs/GigApply/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ export default function GigApply(props) {
<div styleName="cta-buttons">
<Link to={`${config.URL.AUTH}/member?retUrl=${encodeURIComponent(retUrl)}`} styleName="primaryBtn">Login</Link>
</div>
<p styleName="regTxt">Not a member? Register <a href={`${config.URL.AUTH}/member/registration?retUrl=${encodeURIComponent(retUrl)}&mode=signUp&utm_source=gig_listing&regSource=gigs`}>here</a>.</p>
<p styleName="regTxt">Not a member? Register <a href={`${config.URL.AUTH}/?retUrl=${encodeURIComponent(retUrl)}&mode=signUp&utm_source=gig_listing&regSource=gigs`}>here</a>.</p>
</div>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/shared/components/Gigs/LoginModal/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ function LoginModal({ retUrl, onCancel, utmSource }) {
<div className={modalStyle.ctaButtons}>
<PrimaryButton
onClick={() => {
window.location = `${config.URL.AUTH}/member/registration?retUrl=${encodeURIComponent(retUrl)}&mode=signUp&utmSource=${utmSource}&regSource=gigs`;
window.location = `${config.URL.AUTH}/?retUrl=${encodeURIComponent(retUrl)}&mode=signUp&utmSource=${utmSource}&regSource=gigs`;
}}
theme={{
button: buttonThemes.tc['primary-green-md'],
Expand Down
2 changes: 1 addition & 1 deletion src/shared/components/Gigs/ReferralModal/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ function ReferralModal({
>
LOGIN
</PrimaryButton>
<Link to={`${config.URL.AUTH}/member/registration?retUrl=${encodeURIComponent(retUrl)}&mode=signUp&utm_source=gig_listing&regSource=gigs`} className={buttonThemes.tc['primary-white-md']} openNewTab="true">REGISTER</Link>
<Link to={`${config.URL.AUTH}/?retUrl=${encodeURIComponent(retUrl)}&mode=signUp&utm_source=gig_listing&regSource=gigs`} className={buttonThemes.tc['primary-white-md']} openNewTab="true">REGISTER</Link>
</div>
<p className={modalStyle.regTxt}>Find out how the referral program works <a href={HELP_INFO_LINK} target="_blank" rel="noreferrer">here</a>.</p>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/shared/components/LoginModal/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ function LoginModal({
>
LOGIN
</PrimaryButton>
<Link to={`${config.URL.AUTH}/member/registration?retUrl=${encodeURIComponent(retUrl)}&mode=signUp${utmSource ? `&utm_source=${utmSource}` : ''}`} className={buttonThemes.tc['primary-white-md']}>REGISTER</Link>
<Link to={`${config.URL.AUTH}/?retUrl=${encodeURIComponent(retUrl)}&mode=signUp${utmSource ? `&utm_source=${utmSource}` : ''}`} className={buttonThemes.tc['primary-white-md']}>REGISTER</Link>
</div>
{infoNode}
</div>
Expand Down

0 comments on commit ff5bac4

Please sign in to comment.