diff --git a/src/content/docs/useform/formstate.mdx b/src/content/docs/useform/formstate.mdx index 409688cf8..d25f99eaf 100644 --- a/src/content/docs/useform/formstate.mdx +++ b/src/content/docs/useform/formstate.mdx @@ -32,8 +32,8 @@ This object contains information about the entire form state. It helps you to ke | `isValidating` | boolean | Set to `true` during validation. | | `validatingFields` | boolean | Capture fields which are getting async validation. | | `errors` | object | An object with field errors. There is also an [ErrorMessage](/docs/useformstate/errormessage) component to retrieve error message easily. | -| `disabled` | boolean | Set to true if the form is disabled via the disabled prop in [useForm](/docs/useform). -| `isReady` | boolean | Set to true when `formState` subscription setup is ready. isReady && setValue('test', 'data'), [isReady])`}/> | +| `disabled` | boolean | Set to true if the form is disabled via the disabled prop in [useForm](/docs/useform). | +| `isReady` | boolean | Set to true when `formState` subscription setup is ready. isReady && setValue('test', 'data'), [isReady])`}/> |