Compare commits

...

1 Commits

Author SHA1 Message Date
Zamil Majdy
23204b9314 fix(block): Fix AgentExecutorBlock not acceupting user custom input 2025-06-24 14:12:02 -07:00

View File

@@ -268,7 +268,7 @@ export const CustomNode = React.memo(
default:
const getInputPropKey = (key: string) =>
nodeType == BlockUIType.AGENT ? `data.${key}` : key;
nodeType == BlockUIType.AGENT ? `inputs.${key}` : key;
return keys.map(([propKey, propSchema]) => {
const isRequired = data.inputSchema.required?.includes(propKey);