Skip to content

Commit d6cedfb

Browse files
committed
Fix #3484
1 parent 1827616 commit d6cedfb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/shared/containers/tc-communities/Loader.jsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ class Loader extends React.Component {
4949
/* TODO: This is a hacky way to handle SSO authentication for TopGear
5050
* (Wipro) and Zurich community visitors. Should be re-factored, but not it is not
5151
* clear, what exactly do we need to support it in general. */
52-
if ((communityId === 'wipro' || communityId === 'cs') && !visitorGroups) {
52+
if (communityId === 'wipro' && !visitorGroups) {
5353
const returnUrl = encodeURIComponent(window.location.href);
5454
window.location = `${config.URL.AUTH}/sso-login/?retUrl=${returnUrl}&utm_source=${communityId}`;
5555
}

0 commit comments

Comments
 (0)