File tree Expand file tree Collapse file tree 2 files changed +1
-2
lines changed Expand file tree Collapse file tree 2 files changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,6 @@ module.exports = {
1616 rules : {
1717 // Place to specify ESLint rules. Can be used to overwrite rules specified from the extended configs
1818 // e.g.
19- 'arrow-parens' : 'on' ,
2019 'comma-dangles' : 0 ,
2120 'global-require' : 0 ,
2221 'import/no-extraneous-dependencies' : 0 ,
Original file line number Diff line number Diff line change @@ -9,5 +9,5 @@ for (const required of requiredKeys) {
99export const DEBUG : boolean = ( process . env . REACT_APP_DEBUG || '' ) . toLowerCase ( ) === 'true'
1010export const VERSION : string = process . env . VERSION || 'unknown'
1111export const NODE_ENV : string = process . env . NODE_ENV || 'development'
12- export const LOG_STATE : boolean = ( process . env . LOG_STATE || '' ) . toLowerCase ( ) === 'true'
12+ export const LOG_STATE : boolean = ( process . env . REACT_APP_LOG_STATE || '' ) . toLowerCase ( ) === 'true'
1313export const TUTORIAL_URL : string = process . env . REACT_APP_TUTORIAL_URL || ''
You can’t perform that action at this time.
0 commit comments