We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a9b8b37 + a515aa1 commit 9d702f0Copy full SHA for 9d702f0
1 file changed
src/content/10/en/part10b.md
@@ -787,6 +787,7 @@ const BodyMassIndexForm = ({ onSubmit }) => {
787
placeholder="Weight (kg)"
788
value={formik.values.mass}
789
onChangeText={formik.handleChange('mass')}
790
+ onBlur={formik.handleBlur('mass')}
791
/>
792
{formik.touched.mass && formik.errors.mass && (
793
<Text style={{ color: 'red' }}>{formik.errors.mass}</Text>
@@ -795,6 +796,7 @@ const BodyMassIndexForm = ({ onSubmit }) => {
795
796
placeholder="Height (m)"
797
value={formik.values.height}
798
onChangeText={formik.handleChange('height')}
799
+ onBlur={formik.handleBlur('height')}
800
801
{formik.touched.height && formik.errors.height && (
802
<Text style={{ color: 'red' }}>{formik.errors.height}</Text>
0 commit comments