From df10540404f94a6e60401e4f73db298e7624ba0f Mon Sep 17 00:00:00 2001 From: Taher <8665427+nullhook@users.noreply.github.com> Date: Fri, 2 Dec 2022 12:16:19 -0800 Subject: [PATCH] Enabled diagnostic reporting by default and swapped handles of the two checkboxes on help improve screen --- .../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..b4d575b76e97 100644 --- a/components/brave_welcome_ui/components/help-improve/index.tsx +++ b/components/brave_welcome_ui/components/help-improve/index.tsx @@ -34,8 +34,8 @@ function InputCheckbox (props: InputCheckboxProps) { } function HelpImprove () { - const [isP3AEnabled, setP3AEnabled] = React.useState(false) const [isMetricsReportingEnabled, setMetricsReportingEnabled] = React.useState(true) + const [isP3AEnabled, setP3AEnabled] = React.useState(true) const handleP3AChange = () => { setP3AEnabled(!isP3AEnabled) @@ -69,16 +69,16 @@ function HelpImprove () {
- +