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; }