From f850a6011a53a7700dacdd942aa07100d7bc6dda Mon Sep 17 00:00:00 2001 From: joh42 <138504087+joh42@users.noreply.github.com> Date: Fri, 28 Jul 2023 10:46:38 +0200 Subject: [PATCH] added semicolon --- src/components/Form.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }