From 37f1620f7c4c66530a0ae23f2b9c3079527d812c Mon Sep 17 00:00:00 2001 From: Jean Carlo Nascimento Date: Sun, 12 Nov 2023 19:11:47 -0300 Subject: [PATCH] Update typebot.service.ts - element.underline change ~ for * There's no underline in WhatsApp ~ use strikethrough instead, I switched to * bold. --- src/whatsapp/services/typebot.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/whatsapp/services/typebot.service.ts b/src/whatsapp/services/typebot.service.ts index c329a169..07a05926 100644 --- a/src/whatsapp/services/typebot.service.ts +++ b/src/whatsapp/services/typebot.service.ts @@ -323,7 +323,7 @@ export class TypebotService { } if (element.underline) { - text = `~${text}~`; + text = `*${text}*`; } if (element.url) {