Hi,
On React 19, the onChange
event for the checkbox (and probably switch and maybe all the other fields) are called twice.
Reproduction:
<s-checkbox label="Test" onChange={() => console.log('CALLED')}></s-checkbox>
On React 19, clicking the checkbox will output “CALLED” twice.
On React 18, only once as expected.
Thanks!