File tree 2 files changed +3
-10
lines changed
2 files changed +3
-10
lines changed Original file line number Diff line number Diff line change @@ -174,8 +174,7 @@ workflows:
174
174
filters :
175
175
branches :
176
176
only :
177
- - develop
178
- - notifications-analytics
177
+ - hot-fix-hall-of-fame
179
178
# This is alternate dev env for parallel testing
180
179
- " build-test " :
181
180
context : org-global
@@ -189,8 +188,8 @@ workflows:
189
188
filters :
190
189
branches :
191
190
only :
191
+ - hot-fix-hall-of-fame
192
192
- develop
193
- - notifications-analytics
194
193
# Production builds are exectuted
195
194
# when PR is merged to the master
196
195
# Don't change anything in this configuration
Original file line number Diff line number Diff line change 1
1
/**
2
2
* The loader/router for TCO Hall of Fame
3
3
*/
4
- import path from 'path' ;
5
4
import React from 'react' ;
6
5
7
6
import LoadingPagePlaceholder from 'components/LoadingPagePlaceholder' ;
8
- import { AppChunk , webpack } from 'topcoder-react-utils' ;
7
+ import { AppChunk } from 'topcoder-react-utils' ;
9
8
10
9
export default function HallOfFameRouter ( props ) {
11
10
return (
@@ -17,11 +16,6 @@ export default function HallOfFameRouter(props) {
17
16
) )
18
17
}
19
18
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
- } }
25
19
/>
26
20
) ;
27
21
}
You can’t perform that action at this time.
0 commit comments