File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed
src/components/SettingsModal Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -131,14 +131,14 @@ const SettingsModal: React.VFC<ISettingsModalProps> = observer(
131131 Test Sentry
132132 </ Button >
133133 ) }
134- { process . env . NODE_ENV === 'development' ||
135- ( process . env . DEBUG_PROD === 'true' && (
136- < >
137- < p > { `APPDATA: ${ AbstractFileRepository . appDataFolder } ` } </ p >
138- < p > { `SENTRY_DSN: ${ process . env . SENTRY_DSN } ` } </ p >
139- < p > { `GA_UACODE: ${ process . env . GA_UACODE } ` } </ p >
140- </ >
141- ) ) }
134+ { ( process . env . NODE_ENV === 'development' ||
135+ process . env . DEBUG_PROD === 'true' ) && (
136+ < >
137+ < p > { `APPDATA: ${ AbstractFileRepository . appDataFolder } ` } </ p >
138+ < p > { `SENTRY_DSN: ${ process . env . SENTRY_DSN } ` } </ p >
139+ < p > { `GA_UACODE: ${ process . env . GA_UACODE } ` } </ p >
140+ </ >
141+ ) }
142142 </ Modal >
143143 ) ;
144144 }
You can’t perform that action at this time.
0 commit comments