diff --git a/x-pack/plugins/observability_solution/synthetics/public/apps/synthetics/components/settings/alerting_defaults/alert_defaults_form.tsx b/x-pack/plugins/observability_solution/synthetics/public/apps/synthetics/components/settings/alerting_defaults/alert_defaults_form.tsx index 463e7604815a..f87f1267efcc 100644 --- a/x-pack/plugins/observability_solution/synthetics/public/apps/synthetics/components/settings/alerting_defaults/alert_defaults_form.tsx +++ b/x-pack/plugins/observability_solution/synthetics/public/apps/synthetics/components/settings/alerting_defaults/alert_defaults_form.tsx @@ -15,7 +15,6 @@ import { EuiFlexItem, EuiForm, EuiSpacer, - EuiSwitch, } from '@elastic/eui'; import { useDispatch, useSelector } from 'react-redux'; import { useKibana } from '@kbn/kibana-react-plugin/public'; @@ -81,50 +80,6 @@ export const AlertDefaultsForm = () => { return ( - - - - - } - description={ - - } - > - - { - setFormFields({ - ...formFields, - defaultStatusRuleEnabled: !(formFields.defaultStatusRuleEnabled ?? true), - }); - }} - /> - - { - setFormFields({ - ...formFields, - defaultTLSRuleEnabled: !(formFields.defaultTLSRuleEnabled ?? true), - }); - }} - /> -