File tree 2 files changed +9
-7
lines changed
src/shared/routes/Settings 2 files changed +9
-7
lines changed Original file line number Diff line number Diff line change @@ -175,12 +175,14 @@ workflows:
175
175
branches :
176
176
only :
177
177
- develop
178
+ - hot-fix-profile-issue
178
179
# This is alternate dev env for parallel testing
179
180
- " build-test " :
180
181
context : org-global
181
182
filters :
182
183
branches :
183
184
only :
185
+ - develop
184
186
- feature-contentful
185
187
# This is beta env for production soft releases
186
188
- " build-prod-beta " :
@@ -189,7 +191,7 @@ workflows:
189
191
branches :
190
192
only :
191
193
- develop
192
-
194
+ - hot-fix-profile-issue
193
195
# Production builds are exectuted
194
196
# when PR is merged to the master
195
197
# Don't change anything in this configuration
Original file line number Diff line number Diff line change 4
4
5
5
import React from 'react' ;
6
6
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' ;
9
9
import LoadingIndicator from 'components/LoadingIndicator' ;
10
10
11
11
export default function Settings ( { base } ) {
@@ -16,10 +16,10 @@ export default function Settings({ base }) {
16
16
. then ( ( { default : Router } ) => < Router base = { base } /> )
17
17
}
18
18
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
+ // }}
23
23
/>
24
24
) ;
25
25
}
You can’t perform that action at this time.
0 commit comments