From b7bdfef0c6f342dd3d729e5a315702b475576af2 Mon Sep 17 00:00:00 2001 From: Evan Hahn <69474926+EvanHahn-Signal@users.noreply.github.com> Date: Thu, 24 Jun 2021 12:20:31 -0500 Subject: [PATCH] Enable devtools for beta users --- main.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/main.js b/main.js index cbc905fe4..e95fad95f 100644 --- a/main.js +++ b/main.js @@ -137,7 +137,8 @@ let appStartInitialSpellcheckSetting = true; const defaultWebPrefs = { devTools: process.argv.some(arg => arg === '--enable-dev-tools') || - config.environment !== Environment.Production, + config.environment !== Environment.Production || + isBeta(app.getVersion()), }; async function getSpellCheckSetting() {