diff --git a/src/components/Form.js b/src/components/Form.js index 9f93046b5d44..3ea5c13d68f4 100644 --- a/src/components/Form.js +++ b/src/components/Form.js @@ -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; }