diff --git a/src/content/docs/usecontroller/controller.mdx b/src/content/docs/usecontroller/controller.mdx index bd6f65cae..13a093f22 100644 --- a/src/content/docs/usecontroller/controller.mdx +++ b/src/content/docs/usecontroller/controller.mdx @@ -24,7 +24,7 @@ The following table contains information about the arguments for `Controller`. | `shouldUnregister` | boolean = false` | | Input will be unregistered after unmount and defaultValues will be removed as well.

**Note:** this prop should be avoided when using with `useFieldArray` as `unregister` function gets called after input unmount/remount and reorder. | | `disabled` | boolean = false` | | `disabled` prop will be returned from `field` prop. Controlled input will be disabled and its value will be omitted from the submission data. | | `defaultValue` | unknown | | **Important:** Can not apply `undefined` to `defaultValue` or `defaultValues` at `useForm`. | -| `exact` | boolean = false | | This prop will enable an exact match for input name subscriptions, default to true. | +| `exact` | boolean = true | | This prop will enable an exact match for input name subscriptions, default to true. | ### Return