diff --git a/.circleci/config.yml b/.circleci/config.yml index fd7da1b1e5..d723a4d47b 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -276,7 +276,6 @@ workflows: branches: only: - develop - - nursoltan-s-issue-5490 # This is alternate dev env for parallel testing - "build-test": context : org-global @@ -290,14 +289,14 @@ workflows: filters: branches: only: - - gig-ab-v2 + - free # This is beta env for production soft releases - "build-prod-beta": context : org-global filters: branches: only: - - gig-apply-restrict + - free # This is stage env for production QA releases - "build-prod-staging": context : org-global diff --git a/package.json b/package.json index 4c43b84f24..82845d9d3c 100644 --- a/package.json +++ b/package.json @@ -145,7 +145,7 @@ "supertest": "^3.1.0", "tc-core-library-js": "github:appirio-tech/tc-core-library-js#v2.6.3", "tc-ui": "^1.0.12", - "topcoder-react-lib": "1.1.7", + "topcoder-react-lib": "1000.27.13", "topcoder-react-ui-kit": "2.0.1", "topcoder-react-utils": "0.7.8", "turndown": "^4.0.2", diff --git a/src/shared/containers/Profile.jsx b/src/shared/containers/Profile.jsx index 8c12c66334..5f86439b59 100644 --- a/src/shared/containers/Profile.jsx +++ b/src/shared/containers/Profile.jsx @@ -20,7 +20,7 @@ class ProfileContainer extends React.Component { meta, } = this.props; - loadProfile(handleParam, _.join(_.get(meta, 'groupIds', []))); + loadProfile(handleParam, _.get(meta, 'groupIds', [])); } componentWillReceiveProps(nextProps) { @@ -32,7 +32,7 @@ class ProfileContainer extends React.Component { } = nextProps; if (handleParam !== profileForHandle) { - loadProfile(handleParam, _.join(_.get(meta, 'groupIds', []))); + loadProfile(handleParam, _.get(meta, 'groupIds', [])); } }