From b2d92d78556ca84ba1047b2ee59c022408669a76 Mon Sep 17 00:00:00 2001 From: Waleed Latif Date: Mon, 24 Feb 2025 11:22:25 -0800 Subject: [PATCH] fix(executor/conditional): fixed typo in the conditional block response format --- executor/index.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/executor/index.ts b/executor/index.ts index 3826a86e1d..30d5683bef 100644 --- a/executor/index.ts +++ b/executor/index.ts @@ -913,8 +913,7 @@ export class Executor { return { response: { ...((sourceOutput as any)?.response || {}), - content: `Condition '${selectedCondition.title}' chosen`, - result: conditionMet, + conditionResult: conditionMet, selectedPath: { blockId: targetBlock.id, blockType: targetBlock.metadata?.id || '',