From 93b9ace47715618c16c98b9052897a674c4a0b41 Mon Sep 17 00:00:00 2001 From: James Grugett Date: Tue, 19 Jul 2022 14:54:42 -0500 Subject: [PATCH] Comment email: Subject no longer varies between questions so emails are threaded in gmail --- functions/src/emails.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions/src/emails.ts b/functions/src/emails.ts index 60534679..a29f982c 100644 --- a/functions/src/emails.ts +++ b/functions/src/emails.ts @@ -302,7 +302,7 @@ export const sendNewCommentEmail = async ( )}` } - const subject = `Comment from ${commentorName} on ${question}` + const subject = `Comment on ${question}` const from = `${commentorName} on Manifold ` if (contract.outcomeType === 'FREE_RESPONSE' && answerId && answerText) {