docs: fix reference to parent inputs in child extension (#32801)

Signed-off-by: Aramis Sennyey <159921952+aramissennyeydd@users.noreply.github.com>
This commit is contained in:
Aramis Sennyey
2026-02-11 10:23:55 -05:00
committed by GitHub
parent ab25658d7b
commit 36573c6dd0
@@ -399,7 +399,7 @@ const parent = createExtension({
// Create a child extension that attaches to the parent's input
const child = createExtension({
attachTo: page.inputs.children, // Direct reference to the input
attachTo: parent.inputs.children, // Direct reference to the input
output: [coreExtensionData.reactElement], // Outputs are verified against the parent input
// other options...
});