diff --git a/.circleci/config.yml b/.circleci/config.yml index 36f5f46e97..5c9cd08cf3 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -175,12 +175,14 @@ workflows: branches: only: - develop + - hot-fix-profile-issue # This is alternate dev env for parallel testing - "build-test": context : org-global filters: branches: only: + - develop - feature-contentful # This is beta env for production soft releases - "build-prod-beta": @@ -189,7 +191,7 @@ workflows: branches: only: - develop - + - hot-fix-profile-issue # Production builds are exectuted # when PR is merged to the master # Don't change anything in this configuration diff --git a/src/shared/routes/Settings/index.jsx b/src/shared/routes/Settings/index.jsx index f352d2d37d..96f929857c 100644 --- a/src/shared/routes/Settings/index.jsx +++ b/src/shared/routes/Settings/index.jsx @@ -4,8 +4,8 @@ import React from 'react'; import PT from 'prop-types'; -import path from 'path'; -import { AppChunk, webpack } from 'topcoder-react-utils'; +// import path from 'path'; +import { AppChunk } from 'topcoder-react-utils'; import LoadingIndicator from 'components/LoadingIndicator'; export default function Settings({ base }) { @@ -16,10 +16,10 @@ export default function Settings({ base }) { .then(({ default: Router }) => ) } renderPlaceholder={() => } - renderServer={() => { - const Router = webpack.requireWeak(path.resolve(__dirname, './Router')); - return ; - }} + // renderServer={() => { + // const Router = webpack.requireWeak(path.resolve(__dirname, './Router')); + // return ; + // }} /> ); }