File tree 2 files changed +4
-4
lines changed
src/shared/routes/Settings
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -174,7 +174,7 @@ workflows:
174
174
filters :
175
175
branches :
176
176
only :
177
- - develop
177
+ - this-is-before-comcast
178
178
# This is alternate dev env for parallel testing
179
179
- " build-test " :
180
180
context : org-global
@@ -188,7 +188,7 @@ workflows:
188
188
filters :
189
189
branches :
190
190
only :
191
- - develop
191
+ - this-is-before-comcast
192
192
# Production builds are exectuted only on tagged commits to the
193
193
# master branch.
194
194
- " build-prod " :
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ import React from 'react';
6
6
import PT from 'prop-types' ;
7
7
import path from 'path' ;
8
8
import { AppChunk , webpack } from 'topcoder-react-utils' ;
9
- import LoadingIndicator from 'components/LoadingIndicator ' ;
9
+ import LoadingPagePlaceholder from 'components/LoadingPagePlaceholder ' ;
10
10
11
11
export default function Settings ( { base } ) {
12
12
return (
@@ -15,7 +15,7 @@ export default function Settings({ base }) {
15
15
renderClientAsync = { ( ) => import ( /* webpackChunkName: "settings/chunk" */ './Router' )
16
16
. then ( ( { default : Router } ) => < Router base = { base } /> )
17
17
}
18
- renderPlaceholder = { ( ) => < LoadingIndicator /> }
18
+ renderPlaceholder = { ( ) => < LoadingPagePlaceholder /> }
19
19
renderServer = { ( ) => {
20
20
const Router = webpack . requireWeak ( path . resolve ( __dirname , './Router' ) ) ;
21
21
return < Router base = { base } /> ;
You can’t perform that action at this time.
0 commit comments