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 38e9f90 commit bc2c217Copy full SHA for bc2c217
src/shared/containers/tc-communities/Loader.jsx
@@ -51,11 +51,10 @@ class Loader extends React.Component {
51
* clear, what exactly do we need to support it in general. */
52
if ((communityId === 'wipro' || communityId === 'comcast') && !visitorGroups) {
53
const returnUrl = encodeURIComponent(window.location.href);
54
- let subpath = 'member';
55
if (communityId === 'wipro') {
56
- subpath = 'sso-login/';
+ window.location = `${config.URL.AUTH}/?retUrl=${config.URL.TOPGEAR}`;
57
}
58
- window.location = `${config.URL.AUTH}/${subpath}?retUrl=${returnUrl}&utm_source=${communityId}`;
+ window.location = `${config.URL.AUTH}/member?retUrl=${returnUrl}&utm_source=${communityId}`;
59
60
61
0 commit comments