Browse Source
Analytics is now opt-out. existing Ledger Live apps remain opt-in
gre-patch-1
Gaëtan Renaudeau
6 years ago
No known key found for this signature in database
GPG Key ID: 7B66B85F042E5451
2 changed files with
2 additions and
2 deletions
-
src/components/Onboarding/steps/Analytics.js
-
src/reducers/settings.js
|
|
@ -26,7 +26,7 @@ type State = { |
|
|
|
} |
|
|
|
|
|
|
|
const INITIAL_STATE = { |
|
|
|
analyticsToggle: false, |
|
|
|
analyticsToggle: true, |
|
|
|
sentryLogsToggle: true, |
|
|
|
} |
|
|
|
|
|
|
|
|
|
@ -70,7 +70,7 @@ const INITIAL_STATE: SettingsState = { |
|
|
|
currenciesSettings: {}, |
|
|
|
developerMode: !!process.env.__DEV__, |
|
|
|
loaded: false, |
|
|
|
shareAnalytics: false, |
|
|
|
shareAnalytics: true, |
|
|
|
sentryLogs: true, |
|
|
|
lastUsedVersion: __APP_VERSION__, |
|
|
|
} |
|
|
|