From 559ccde0159731ed1b8fd7eec6b5d91e3ab39b3e Mon Sep 17 00:00:00 2001 From: Claude Date: Fri, 6 Feb 2026 05:30:58 +0000 Subject: [PATCH] fix(list-message): remove duplicate header in nativeList conversion When title is not provided, the text was used as fallback for both title and description, causing the header to appear twice. Now title only uses an explicit title field, description uses text. https://claude.ai/code/session_01SJdSHiUxtwzV8bb5dedodb --- src/Utils/messages.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Utils/messages.ts b/src/Utils/messages.ts index 7592da3d..113901a5 100644 --- a/src/Utils/messages.ts +++ b/src/Utils/messages.ts @@ -1081,7 +1081,7 @@ export const generateWAMessageContent = async ( // Legacy format (listMessage) works on all platforms const generated = generateListMessageLegacy( { sections: listMsg.nativeList.sections }, - listMsg.title || listMsg.text || '', + listMsg.title || '', listMsg.text || '', listMsg.nativeList.buttonText, listMsg.footer