We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a87933c commit e757f52Copy full SHA for e757f52
packages/core/src/CheckBox/index.tsx
@@ -41,7 +41,7 @@ function CheckBox(props: CheckBoxProps) {
41
onChange && onChange(state.checked);
42
} else {
43
setState({ checked: !state.checked });
44
- onChange && onChange(state.checked);
+ onChange && onChange(!state.checked);
45
}
46
};
47
0 commit comments