aboutsummaryrefslogtreecommitdiffstats
path: root/src/index.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/index.ts')
-rw-r--r--src/index.ts6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/index.ts b/src/index.ts
index fad6b9b69..df044ab7e 100644
--- a/src/index.ts
+++ b/src/index.ts
@@ -93,11 +93,6 @@ const proxySettings = new Settings('proxy');
93const retrieveSettingValue = (key: string, defaultValue: boolean) => 93const retrieveSettingValue = (key: string, defaultValue: boolean) =>
94 ifUndefinedBoolean(settings.get(key), defaultValue); 94 ifUndefinedBoolean(settings.get(key), defaultValue);
95 95
96if (retrieveSettingValue('sentry', DEFAULT_APP_SETTINGS.sentry)) {
97 // eslint-disable-next-line global-require
98 require('./sentry');
99}
100
101const liftSingleInstanceLock = retrieveSettingValue( 96const liftSingleInstanceLock = retrieveSettingValue(
102 'liftSingleInstanceLock', 97 'liftSingleInstanceLock',
103 false, 98 false,
@@ -218,7 +213,6 @@ const createWindow = () => {
218 nodeIntegration: true, 213 nodeIntegration: true,
219 contextIsolation: false, 214 contextIsolation: false,
220 webviewTag: true, 215 webviewTag: true,
221 preload: join(__dirname, 'sentry.js'),
222 }, 216 },
223 }); 217 });
224 218