Skip to content

Commit e0b2ad9

Browse files
committed
Merge branch 'master' into feature-contentful
2 parents 6dce16f + 7a6adee commit e0b2ad9

File tree

3 files changed

+4
-11
lines changed

3 files changed

+4
-11
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

config/production.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ module.exports = {
99
DOMAIN: 'topcoder.auth0.com',
1010
},
1111
CDN: {
12-
PUBLIC: 'https://d2nl5eqipnb33q.cloudfront.net',
12+
PUBLIC: 'https://dlxczxztayxv6.cloudfront.net',
1313
},
1414
COOKIES: {
1515
MAXAGE: 7,

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)