From ea72ca42fd5671f55cda80469f1cfdcf0d36ca5c Mon Sep 17 00:00:00 2001 From: Koper Date: Tue, 5 Dec 2023 20:34:17 +0700 Subject: [PATCH] Removed top
--- www/app/lib/zulip.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/app/lib/zulip.ts b/www/app/lib/zulip.ts index 69912f55..4b3cbe78 100644 --- a/www/app/lib/zulip.ts +++ b/www/app/lib/zulip.ts @@ -75,6 +75,6 @@ export function getZulipMessage( summary += transcript.longSummary; summary += "```\n\n"; - const message = "----\n\n" + headerText + summary + topicText + "-----\n"; + const message = headerText + summary + topicText + "-----\n"; return message; }