revert change to nested manifold state assignment

This commit is contained in:
2024-11-19 17:52:04 -05:00
parent 9de8693b21
commit fc250ff854

View File

@@ -99,7 +99,7 @@ export class NestedManifoldRegion extends ManifoldRegion {
const result = await this.nestedManifold.executeWorkflow(prompt); const result = await this.nestedManifold.executeWorkflow(prompt);
if (result) { if (result) {
log.debug(`Nested workflow execution successful, updating state`); log.debug(`Nested workflow execution successful, updating state`);
Object.assign(this.nestedManifold.state, { ...this.nestedManifold.state, ...result }); Object.assign(this.nestedManifold.state, this.nestedManifold.state);
} }
return result; return result;
} }