Skip to content

Commit 61f8c8b

Browse files
authored
Merge pull request #4253 from topcoder-platform/develop
Fix For accessing the profile settings page
2 parents 7357d65 + 5c5a685 commit 61f8c8b

File tree

2 files changed

+9
-7
lines changed

2 files changed

+9
-7
lines changed

.circleci/config.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,12 +175,14 @@ workflows:
175175
branches:
176176
only:
177177
- develop
178+
- hot-fix-profile-issue
178179
# This is alternate dev env for parallel testing
179180
- "build-test":
180181
context : org-global
181182
filters:
182183
branches:
183184
only:
185+
- develop
184186
- feature-contentful
185187
# This is beta env for production soft releases
186188
- "build-prod-beta":
@@ -189,7 +191,7 @@ workflows:
189191
branches:
190192
only:
191193
- develop
192-
194+
- hot-fix-profile-issue
193195
# Production builds are exectuted
194196
# when PR is merged to the master
195197
# Don't change anything in this configuration

src/shared/routes/Settings/index.jsx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44

55
import React from 'react';
66
import PT from 'prop-types';
7-
import path from 'path';
8-
import { AppChunk, webpack } from 'topcoder-react-utils';
7+
// import path from 'path';
8+
import { AppChunk } from 'topcoder-react-utils';
99
import LoadingIndicator from 'components/LoadingIndicator';
1010

1111
export default function Settings({ base }) {
@@ -16,10 +16,10 @@ export default function Settings({ base }) {
1616
.then(({ default: Router }) => <Router base={base} />)
1717
}
1818
renderPlaceholder={() => <LoadingIndicator />}
19-
renderServer={() => {
20-
const Router = webpack.requireWeak(path.resolve(__dirname, './Router'));
21-
return <Router base={base} />;
22-
}}
19+
// renderServer={() => {
20+
// const Router = webpack.requireWeak(path.resolve(__dirname, './Router'));
21+
// return <Router base={base} />;
22+
// }}
2323
/>
2424
);
2525
}

0 commit comments

Comments
 (0)