diff --git a/docs/framework/react/guides/form-composition.md b/docs/framework/react/guides/form-composition.md index 2cc825799..81f7e8d7d 100644 --- a/docs/framework/react/guides/form-composition.md +++ b/docs/framework/react/guides/form-composition.md @@ -223,7 +223,7 @@ import { SubmitButton } from './FormComponents/SubmitButton' export const { useAppForm } = ProfileForm.extendForm({ fieldComponents: { CustomTextField }, - // Ts will error since the parent appForm already has a component called CustomSubmit + // Ts will error since the parent appForm already has a component called SubmitButton formComponents: { SubmitButton }, }) ```