diff --git a/packages/eslint-plugin-react-hooks/src/ExhaustiveDeps.js b/packages/eslint-plugin-react-hooks/src/ExhaustiveDeps.js index f4c36fcf2202d..268b6873bd589 100644 --- a/packages/eslint-plugin-react-hooks/src/ExhaustiveDeps.js +++ b/packages/eslint-plugin-react-hooks/src/ExhaustiveDeps.js @@ -255,7 +255,10 @@ export default { } } } else if (name === 'useTransition') { - if (id.type === 'ArrayPattern' && isArray(resolved.identifiers)) { + if ( + id.type === 'ArrayPattern' && + isArray(resolved.identifiers) + ) { // Is first tuple value the same reference we're checking? if (id.elements[0] === resolved.identifiers[0]) { // Setter is stable.