Skip to content

Commit

Permalink
Try fixing missing return in TextField.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
robertisele authored Sep 1, 2023
1 parent d1bd257 commit 593c090
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/TextField/TextField.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ export const TextField = ({
handleLabelEscape()
return false
}
otherProps.onKeyDown?.(event)
return otherProps.onKeyDown?.(event)
}, [otherProps.onKeyDown, escapeToBlur])

const {
Expand Down

0 comments on commit 593c090

Please sign in to comment.