From df15171de9604cea75360cbe288cf35447186764 Mon Sep 17 00:00:00 2001 From: Apola Kipso Date: Fri, 21 Aug 2020 13:16:28 +0200 Subject: [PATCH] Fixed property name --- docs/src/pages/docs/api/withFormik.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/pages/docs/api/withFormik.md b/docs/src/pages/docs/api/withFormik.md index eabf749f1..2c6046ae5 100644 --- a/docs/src/pages/docs/api/withFormik.md +++ b/docs/src/pages/docs/api/withFormik.md @@ -135,7 +135,7 @@ updatable form state and make these values available to the new component as If this option is specified, then Formik will transfer its results into updatable form state and make these values available to the new component as -`props.errors`. Useful for instantiating arbitrary touched state (i.e. marking fields as visited) into your form. As a reminder, Formik will use this initial value (and this function will be re-run) if the form is reset. +`props.touched`. Useful for instantiating arbitrary touched state (i.e. marking fields as visited) into your form. As a reminder, Formik will use this initial value (and this function will be re-run) if the form is reset. ### `mapPropsToValues?: (props: Props) => Values`