odaptos_design_system 2.0.188 → 2.0.189

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -11537,9 +11537,6 @@ const Checkbox = ({
11537
11537
  color,
11538
11538
  name
11539
11539
  }) => {
11540
- React.useEffect(() => {
11541
- console.log('checked', checked);
11542
- }, [checked]);
11543
11540
  return /*#__PURE__*/React__default.createElement("div", {
11544
11541
  className: `${styles$b.checkboxContainer} ${disabled ? styles$b.disabled : ''} ${className}`,
11545
11542
  style: {
@@ -11551,7 +11548,7 @@ const Checkbox = ({
11551
11548
  onChange({
11552
11549
  target: {
11553
11550
  name: name || '',
11554
- value: newValue
11551
+ checked: newValue
11555
11552
  }
11556
11553
  });
11557
11554
  }