disables doSetAutoLaunch if not production
This commit is contained in:
parent
350bab2abc
commit
ebb7277e40
1 changed files with 1 additions and 1 deletions
|
@ -129,7 +129,7 @@ export function doSetAutoLaunch(value) {
|
|||
const state = getState();
|
||||
const autoLaunch = makeSelectClientSetting(SETTINGS.AUTO_LAUNCH)(state);
|
||||
|
||||
if (IS_MAC) {
|
||||
if (IS_MAC || process.env.NODE_ENV !== 'production') {
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue