Skip to content

Commit d0a2cb9

Browse files
committed
style: format files to satisfy prettier check
Signed-off-by: Antonette Caldwell <134739862+nebula-aac@users.noreply.github.com>
1 parent 0f625ba commit d0a2cb9

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

src/custom/TypingFilter/index.tsx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -78,9 +78,9 @@ export function TypingFilter({ filterSchema, handleFilter, autoFilter = false }:
7878
if (!inputFieldRef.current) {
7979
return;
8080
}
81-
81+
8282
const inputField = inputFieldRef.current; // Copy the value to a variable
83-
83+
8484
const handleKeyDown = (e: KeyboardEvent) => {
8585
if (e.key === 'Enter') {
8686
// Perform nullish check before accessing inputField.value
@@ -89,13 +89,13 @@ export function TypingFilter({ filterSchema, handleFilter, autoFilter = false }:
8989
setAnchorEl(null);
9090
}
9191
};
92-
92+
9393
inputField?.addEventListener('keydown', handleKeyDown);
94-
94+
9595
return () => {
9696
inputField?.removeEventListener('keydown', handleKeyDown);
9797
};
98-
}, [filterSchema, handleFilter]);
98+
}, [filterSchema, handleFilter]);
9999

100100
React.useEffect(() => {
101101
if (autoFilter && filterState.state === FilteringState.SELECTING_FILTER) {

0 commit comments

Comments
 (0)