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__, }