We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 94fd121 commit c031970Copy full SHA for c031970
packages/eslint-plugin-react-hooks/src/ExhaustiveDeps.js
@@ -255,7 +255,10 @@ export default {
255
}
256
257
} else if (name === 'useTransition') {
258
- if (id.type === 'ArrayPattern' && isArray(resolved.identifiers)) {
+ if (
259
+ id.type === 'ArrayPattern' &&
260
+ isArray(resolved.identifiers)
261
+ ) {
262
// Is first tuple value the same reference we're checking?
263
if (id.elements[0] === resolved.identifiers[0]) {
264
// Setter is stable.
0 commit comments