diff --git a/src/content/10/en/part10b.md b/src/content/10/en/part10b.md index 5fb307e1475..44e0628b740 100644 --- a/src/content/10/en/part10b.md +++ b/src/content/10/en/part10b.md @@ -791,6 +791,7 @@ const BodyMassIndexForm = ({ onSubmit }) => { placeholder="Weight (kg)" value={formik.values.mass} onChangeText={formik.handleChange('mass')} + onBlur={formik.handleBlur('mass')} /> {formik.touched.mass && formik.errors.mass && ( {formik.errors.mass} @@ -799,6 +800,7 @@ const BodyMassIndexForm = ({ onSubmit }) => { placeholder="Height (m)" value={formik.values.height} onChangeText={formik.handleChange('height')} + onBlur={formik.handleBlur('height')} /> {formik.touched.height && formik.errors.height && ( {formik.errors.height}