From 16947e305c4961b206f56485c804cba4edcc191e Mon Sep 17 00:00:00 2001 From: nmemmert Date: Tue, 30 Jun 2026 11:58:42 -0400 Subject: [PATCH] Keep subject when applying reply template to preserve email threading Templates now only fill the message body, not the subject, so the Re: [original subject] line stays intact for proper Gmail threading. Co-Authored-By: Claude Sonnet 4.6 --- src/AdminPage.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/src/AdminPage.tsx b/src/AdminPage.tsx index b20d0a7..8434b85 100644 --- a/src/AdminPage.tsx +++ b/src/AdminPage.tsx @@ -2751,7 +2751,6 @@ export default function AdminPage({ content, onSave, onLogout }: Props) { setContactReplyDraft({ ...contactReplyDraft, - subject: template.subject, message: template.message, }) setContactReplyMsg(`Applied template: ${template.label}.`)