From 6425e065435bd4745df9ba5123f7eff4cefc5438 Mon Sep 17 00:00:00 2001 From: Claude Date: Fri, 6 Feb 2026 05:17:39 +0000 Subject: [PATCH] fix(list-message): use SINGLE_SELECT instead of PRODUCT_LIST in generateListMessageLegacy PRODUCT_LIST type requires WhatsApp Business catalog data and causes error 479 for regular menu lists. SINGLE_SELECT is the correct type for interactive menu lists with sections/rows. 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 098f5118..7592da3d 100644 --- a/src/Utils/messages.ts +++ b/src/Utils/messages.ts @@ -1020,7 +1020,7 @@ export const generateListMessageLegacy = ( description, buttonText, footerText: footer, - listType: WAProto.Message.ListMessage.ListType.PRODUCT_LIST, + listType: WAProto.Message.ListMessage.ListType.SINGLE_SELECT, sections: listInfo.sections.map(section => ({ title: section.title, rows: section.rows.map(row => ({