Setting the checkbox to be indeterminate via isChecked={null} is triggering an error that indicates a "controlled input is becoming uncontrolled" in the console.
To resolve - checked should be set by calculateChecked instead.
Also, the error was not showing on the docs site but is showing on codesandbox.
Setting the checkbox to be indeterminate via
isChecked={null}is triggering an error that indicates a "controlled input is becoming uncontrolled" in the console.To resolve -
checkedshould be set bycalculateCheckedinstead.Also, the error was not showing on the docs site but is showing on codesandbox.