Skip to content

Commit c031970

Browse files
committed
Revert "apply prettier (#21165)"
This reverts commit 94fd121.
1 parent 94fd121 commit c031970

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

packages/eslint-plugin-react-hooks/src/ExhaustiveDeps.js

+4-1
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,10 @@ export default {
255255
}
256256
}
257257
} else if (name === 'useTransition') {
258-
if (id.type === 'ArrayPattern' && isArray(resolved.identifiers)) {
258+
if (
259+
id.type === 'ArrayPattern' &&
260+
isArray(resolved.identifiers)
261+
) {
259262
// Is first tuple value the same reference we're checking?
260263
if (id.elements[0] === resolved.identifiers[0]) {
261264
// Setter is stable.

0 commit comments

Comments
 (0)