Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/react/expanding/src/main.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ function IndeterminateCheckbox({
if (typeof indeterminate === 'boolean') {
ref.current.indeterminate = !rest.checked && indeterminate
}
}, [ref, indeterminate])
}, [indeterminate])

return (
<input
Expand Down
4 changes: 2 additions & 2 deletions examples/react/row-selection/src/main.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React, { HTMLAttributes, HTMLProps } from 'react'
import React, { HTMLProps } from 'react'
import ReactDOM from 'react-dom/client'

import './index.css'
Expand Down Expand Up @@ -348,7 +348,7 @@ function IndeterminateCheckbox({
if (typeof indeterminate === 'boolean') {
ref.current.indeterminate = !rest.checked && indeterminate
}
}, [ref, indeterminate])
}, [indeterminate])

return (
<input
Expand Down