diff --git a/docs/framework/preact/guides/form-composition.md b/docs/framework/preact/guides/form-composition.md index 66b2da4b0..cb9923fac 100644 --- a/docs/framework/preact/guides/form-composition.md +++ b/docs/framework/preact/guides/form-composition.md @@ -345,7 +345,7 @@ const FieldGroupPasswordFields = withFieldGroup({ // Optional, but adds props to the `render` function in addition to `form` props: { - // These default values are also for type-checking and are not used at runtime + // These props are set as default values for the `render` function title: 'Password', }, // Internally, you will have access to a `group` instead of a `form` diff --git a/docs/framework/react/guides/form-composition.md b/docs/framework/react/guides/form-composition.md index 81f7e8d7d..b782a5a8b 100644 --- a/docs/framework/react/guides/form-composition.md +++ b/docs/framework/react/guides/form-composition.md @@ -418,7 +418,7 @@ const FieldGroupPasswordFields = withFieldGroup({ // Optional, but adds props to the `render` function in addition to `form` props: { - // These default values are also for type-checking and are not used at runtime + // These props are set as default values for the `render` function title: 'Password', }, // Internally, you will have access to a `group` instead of a `form` diff --git a/docs/framework/solid/guides/form-composition.md b/docs/framework/solid/guides/form-composition.md index 053aa0831..2325694eb 100644 --- a/docs/framework/solid/guides/form-composition.md +++ b/docs/framework/solid/guides/form-composition.md @@ -258,7 +258,7 @@ const FieldGroupPasswordFields = withFieldGroup({ // Optional, but adds props to the `render` function in addition to `form` props: { - // These default values are also for type-checking and are not used at runtime + // These props are set as default values for the `render` function title: 'Password', }, // Internally, you will have access to a `group` instead of a `form`