Skip to content

Commit 17f7322

Browse files
committed
fix: remove 'focus' from EVENT_HANDLER_METHODS for consistency
1 parent 67f08f9 commit 17f7322

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

lib/utils/index.ts

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -114,13 +114,7 @@ const METHODS_RETURNING_NODES = [
114114
'querySelectorAll',
115115
] as const;
116116

117-
const EVENT_HANDLER_METHODS = [
118-
'click',
119-
'focus',
120-
'blur',
121-
'select',
122-
'submit',
123-
] as const;
117+
const EVENT_HANDLER_METHODS = ['click', 'blur', 'select', 'submit'] as const;
124118

125119
const ALL_RETURNING_NODES = [
126120
...PROPERTIES_RETURNING_NODES,

0 commit comments

Comments
 (0)