From d6d0bfded98fa657ffa46f0126327204182b6fbb Mon Sep 17 00:00:00 2001 From: Darnell Andries Date: Thu, 8 Dec 2022 14:38:37 -0800 Subject: [PATCH] Fix desktop onboarding P3A opt-in checkbox --- .../components/help-improve/index.tsx | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/components/brave_welcome_ui/components/help-improve/index.tsx b/components/brave_welcome_ui/components/help-improve/index.tsx index 28ed47fcb51a..d81aad4b4d32 100644 --- a/components/brave_welcome_ui/components/help-improve/index.tsx +++ b/components/brave_welcome_ui/components/help-improve/index.tsx @@ -34,7 +34,7 @@ function InputCheckbox (props: InputCheckboxProps) { } function HelpImprove () { - const [isP3AEnabled, setP3AEnabled] = React.useState(false) + const [isP3AEnabled, setP3AEnabled] = React.useState(true) const [isMetricsReportingEnabled, setMetricsReportingEnabled] = React.useState(true) const handleP3AChange = () => { @@ -69,16 +69,16 @@ function HelpImprove () {
- +