Perhaps the problem is the onChange

This commit is contained in:
Julia V Rose 2026-04-28 23:35:48 -07:00
parent 7317102d7d
commit 548f3bd45f

View file

@ -294,12 +294,6 @@ const StreamModal = EasyModal.create(({ id, visible, remove }: Props) => {
type="checkbox"
name={field.name}
checked={field.value}
onChange={(e: any) => {
setFieldValue(
field.name,
e.target.checked,
);
}}
/>
</label>
)}