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 () {
- +