From 66b91d8c7860ffbd5931e26115f8613dcc50b4d0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C3=ABtan=20Renaudeau?= Date: Tue, 25 Sep 2018 17:52:00 +0200 Subject: [PATCH] Analytics is now opt-out. existing Ledger Live apps remain opt-in --- src/components/Onboarding/steps/Analytics.js | 2 +- src/reducers/settings.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/Onboarding/steps/Analytics.js b/src/components/Onboarding/steps/Analytics.js index 360ce4ba..2ac8af4d 100644 --- a/src/components/Onboarding/steps/Analytics.js +++ b/src/components/Onboarding/steps/Analytics.js @@ -26,7 +26,7 @@ type State = { } const INITIAL_STATE = { - analyticsToggle: false, + analyticsToggle: true, sentryLogsToggle: true, } diff --git a/src/reducers/settings.js b/src/reducers/settings.js index 76e51bb7..2adfdd6f 100644 --- a/src/reducers/settings.js +++ b/src/reducers/settings.js @@ -70,7 +70,7 @@ const INITIAL_STATE: SettingsState = { currenciesSettings: {}, developerMode: !!process.env.__DEV__, loaded: false, - shareAnalytics: false, + shareAnalytics: true, sentryLogs: true, lastUsedVersion: __APP_VERSION__, }