Skip to content

Commit 546d0a5

Browse files
authored
Merge pull request #4314 from topcoder-platform/develop
hot-fix for hall-of-fame
2 parents 7642caa + 921aefb commit 546d0a5

File tree

2 files changed

+3
-10
lines changed

2 files changed

+3
-10
lines changed

.circleci/config.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -174,8 +174,7 @@ workflows:
174174
filters:
175175
branches:
176176
only:
177-
- develop
178-
- notifications-analytics
177+
- hot-fix-hall-of-fame
179178
# This is alternate dev env for parallel testing
180179
- "build-test":
181180
context : org-global
@@ -189,8 +188,8 @@ workflows:
189188
filters:
190189
branches:
191190
only:
191+
- hot-fix-hall-of-fame
192192
- develop
193-
- notifications-analytics
194193
# Production builds are exectuted
195194
# when PR is merged to the master
196195
# Don't change anything in this configuration

src/shared/routes/HallOfFame.jsx

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
/**
22
* The loader/router for TCO Hall of Fame
33
*/
4-
import path from 'path';
54
import React from 'react';
65

76
import LoadingPagePlaceholder from 'components/LoadingPagePlaceholder';
8-
import { AppChunk, webpack } from 'topcoder-react-utils';
7+
import { AppChunk } from 'topcoder-react-utils';
98

109
export default function HallOfFameRouter(props) {
1110
return (
@@ -17,11 +16,6 @@ export default function HallOfFameRouter(props) {
1716
))
1817
}
1918
renderPlaceholder={() => <LoadingPagePlaceholder />}
20-
renderServer={() => {
21-
const p = webpack.resolveWeak('components/HallOfFamePage');
22-
const HallOfFameContainer = webpack.requireWeak(path.resolve(__dirname, p));
23-
return <HallOfFameContainer {...props} />;
24-
}}
2519
/>
2620
);
2721
}

0 commit comments

Comments
 (0)