feat: make error reporting opt-in

This commit is contained in:
Baptiste Grob
2021-01-11 13:17:41 +01:00
parent a39d8ed72e
commit d44748fcad
2 changed files with 11 additions and 3 deletions

View File

@@ -100,7 +100,7 @@ class AccountMenuCtrl extends PureViewCtrl<{}, AccountMenuState> {
},
mutable: {},
showBetaWarning: false,
errorReportingEnabled: !storage.get(StorageKey.DisableErrorReporting),
errorReportingEnabled: storage.get(StorageKey.DisableErrorReporting) === false,
showSessions: false,
} as AccountMenuState;
}