File tree 2 files changed +4
-2
lines changed
2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -205,7 +205,7 @@ export function getCompContainer<T extends CompConstructor>(params: GetContainer
205
205
const reduceFn = wrapWithPromiseHandling ( ( act : CompAction ) => {
206
206
let action = act ;
207
207
if ( reduceContext && reduceContext . readOnly && action . editDSL ) {
208
- log . error ( "editDSL should be false in view mode, action: " , action ) ;
208
+ log . info ( "editDSL should be false in view mode, action: " , action ) ;
209
209
action = { ...action , editDSL : false } ;
210
210
}
211
211
Original file line number Diff line number Diff line change @@ -22,7 +22,9 @@ const isEEGlobal = edition === "enterprise-global";
22
22
const isEE = edition === "enterprise" || isEEGlobal ;
23
23
const isDev = nodeEnv === "development" ;
24
24
const isVisualizerEnabled = ! ! process . env . ENABLE_VISUALIZER ;
25
- const browserCheckFileName = `browser-check-${ process . env . REACT_APP_COMMIT_ID } .js` ;
25
+ // the file was never created
26
+ // const browserCheckFileName = `browser-check-${process.env.REACT_APP_COMMIT_ID}.js`;
27
+ const browserCheckFileName = `browser-check.js` ;
26
28
const base = ensureLastSlash ( process . env . PUBLIC_URL ) ;
27
29
28
30
if ( ! apiProxyTarget && isDev ) {
You can’t perform that action at this time.
0 commit comments