Skip to content

Commit 95c609d

Browse files
Merge pull request #5517 from topcoder-platform/fix-topgear-profile
Fix topgear profile
2 parents 68eed92 + c17442e commit 95c609d

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

.circleci/config.yml

+2-3
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,6 @@ workflows:
276276
branches:
277277
only:
278278
- develop
279-
- nursoltan-s-issue-5490
280279
# This is alternate dev env for parallel testing
281280
- "build-test":
282281
context : org-global
@@ -290,14 +289,14 @@ workflows:
290289
filters:
291290
branches:
292291
only:
293-
- gig-ab-v2
292+
- free
294293
# This is beta env for production soft releases
295294
- "build-prod-beta":
296295
context : org-global
297296
filters:
298297
branches:
299298
only:
300-
- gig-apply-restrict
299+
- free
301300
# This is stage env for production QA releases
302301
- "build-prod-staging":
303302
context : org-global

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@
145145
"supertest": "^3.1.0",
146146
"tc-core-library-js": "github:appirio-tech/tc-core-library-js#v2.6.3",
147147
"tc-ui": "^1.0.12",
148-
"topcoder-react-lib": "1.1.7",
148+
"topcoder-react-lib": "1000.27.13",
149149
"topcoder-react-ui-kit": "2.0.1",
150150
"topcoder-react-utils": "0.7.8",
151151
"turndown": "^4.0.2",

src/shared/containers/Profile.jsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class ProfileContainer extends React.Component {
2020
meta,
2121
} = this.props;
2222

23-
loadProfile(handleParam, _.join(_.get(meta, 'groupIds', [])));
23+
loadProfile(handleParam, _.get(meta, 'groupIds', []));
2424
}
2525

2626
componentWillReceiveProps(nextProps) {
@@ -32,7 +32,7 @@ class ProfileContainer extends React.Component {
3232
} = nextProps;
3333

3434
if (handleParam !== profileForHandle) {
35-
loadProfile(handleParam, _.join(_.get(meta, 'groupIds', [])));
35+
loadProfile(handleParam, _.get(meta, 'groupIds', []));
3636
}
3737
}
3838

0 commit comments

Comments
 (0)