Skip to content

Commit

Permalink
chore: Remove unnecessary check
Browse files Browse the repository at this point in the history
  • Loading branch information
vsgoulart committed Jan 5, 2024
1 parent db44564 commit 47ee093
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -187,8 +187,8 @@ export default function Numberfield(props) {
id={ domId }
onKeyDown={ onKeyDown }
onKeyPress={ onKeyPress }
onBlur={ () => onBlur && onBlur() }
onFocus={ () => onFocus && onFocus() }
onBlur={ onBlur }
onFocus={ onFocus }

// @ts-ignore
onInput={ (e) => setValue(e.target.value) }
Expand Down

0 comments on commit 47ee093

Please sign in to comment.