From 07fc210953c6eb6868dcb8cbac40cea4e95eea9a Mon Sep 17 00:00:00 2001 From: Baptiste Arnaud Date: Thu, 28 Aug 2025 11:26:21 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=91=EF=B8=8F=20Fix=20single=20button?= =?UTF-8?q?=20parsing?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/blocks/inputs/buttons/parseSingleChoiceReply.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/bot-engine/src/blocks/inputs/buttons/parseSingleChoiceReply.ts b/packages/bot-engine/src/blocks/inputs/buttons/parseSingleChoiceReply.ts index 1c12e8a3d..663189fe1 100644 --- a/packages/bot-engine/src/blocks/inputs/buttons/parseSingleChoiceReply.ts +++ b/packages/bot-engine/src/blocks/inputs/buttons/parseSingleChoiceReply.ts @@ -32,7 +32,7 @@ export const parseSingleChoiceReply = ( return { status: "success", - content: matchedItem.value ?? parseItemContent(matchedItem), + content, outgoingEdgeId: matchedItem.outgoingEdgeId, }; };