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.
1 parent e8538a3 commit 10d7c19Copy full SHA for 10d7c19
src/shared/containers/challenge-detail/index.jsx
@@ -290,14 +290,12 @@ class ChallengeDetailPageContainer extends React.Component {
290
const {
291
auth,
292
challengeId,
293
- communityId,
294
openTermsModal,
295
registerForChallenge,
296
terms,
297
} = this.props;
298
if (!auth.tokenV3) {
299
- const utmSource = communityId || 'community-app-main';
300
- window.location.href = `${config.URL.AUTH}/member?retUrl=${encodeURIComponent(window.location.href)}&utm_source=${utmSource}®Source=challenges`;
+ window.location.href = `${config.URL.AUTH}/member?retUrl=${encodeURIComponent(window.location.href)}®Source=challenges`;
301
} else if (_.every(terms, 'agreed')) {
302
registerForChallenge(auth, challengeId);
303
} else {
0 commit comments