diff --git a/src/components/forms/controls/Checkbox/CheckboxTri.tsx b/src/components/forms/controls/Checkbox/CheckboxTri.tsx index da65a73..1bee689 100644 --- a/src/components/forms/controls/Checkbox/CheckboxTri.tsx +++ b/src/components/forms/controls/Checkbox/CheckboxTri.tsx @@ -40,7 +40,7 @@ export const CheckboxTri = (props: CheckboxTriProps) => { // Keep track of the `indeterminate` state of the checkbox. Needed so that we can rerender the component when // `indeterminate` changes. There is no event that triggers when `indeterminate` is changed. - const [internalIndeterminate, setInternalIndeterminate] = React.useState(undefined); + const [_internalIndeterminate, setInternalIndeterminate] = React.useState(undefined); const handleChange = React.useCallback((event: React.ChangeEvent) => { props.onChange?.(event);