From 547bbcc42206e851639a0849a5c1b8bef7cf2ba2 Mon Sep 17 00:00:00 2001 From: Andy Cochrane Date: Wed, 15 Apr 2026 14:45:41 +0100 Subject: [PATCH] docs(react): fix incorrect form component reference in code comment --- docs/framework/react/guides/form-composition.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 }, }) ```