Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix alert disabling type error (#8561)
When disabling an alert, the background `alertEnabledness` state of the alert was being set to `undefined` instead of `false`. This didn't have any user-facing effect, since `undefined` is falsey, but it did result in a PropType error on the Alert settings page. This mistake was made in #8550. The `alertEnabledness` state is now correctly set to `false` instead of `undefined`.
- Loading branch information