Skip to content

Commit

Permalink
added semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
joh42 authored Jul 28, 2023
1 parent 873e2a6 commit f850a60
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Form.js
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ function Form(props) {
setErrors(touchedInputErrors);
}

const isAtLeastOneInputTouched = _.keys(touchedInputs.current).length > 0
const isAtLeastOneInputTouched = _.keys(touchedInputs.current).length > 0;
if (isAtLeastOneInputTouched) {
lastValidatedValues.current = values;
}
Expand Down

0 comments on commit f850a60

Please sign in to comment.