diff --git a/.circleci/config.yml b/.circleci/config.yml index c76c230d2e..9bb0a50e15 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -343,7 +343,7 @@ workflows: branches: only: - develop - - fix/settings-save-fail + - fix/regsource # This is alternate dev env for parallel testing - "build-test": context : org-global diff --git a/src/shared/containers/challenge-detail/index.jsx b/src/shared/containers/challenge-detail/index.jsx index 97172e7c77..7fc42608f6 100644 --- a/src/shared/containers/challenge-detail/index.jsx +++ b/src/shared/containers/challenge-detail/index.jsx @@ -297,7 +297,7 @@ class ChallengeDetailPageContainer extends React.Component { } = this.props; if (!auth.tokenV3) { const utmSource = communityId || 'community-app-main'; - window.location.href = `${config.URL.AUTH}/member?retUrl=${encodeURIComponent(window.location.href)}&utm_source=${utmSource}`; + window.location.href = `${config.URL.AUTH}/member?retUrl=${encodeURIComponent(window.location.href)}&utm_source=${utmSource}®Source=challenges`; } else if (_.every(terms, 'agreed')) { registerForChallenge(auth, challengeId); } else {