From 25d597a2832b7247b92ab5fe57bdae3354c873a0 Mon Sep 17 00:00:00 2001 From: alma Date: Mon, 21 Apr 2025 18:11:36 +0200 Subject: [PATCH] mail page fix --- app/courrier/page.tsx | 8 -------- 1 file changed, 8 deletions(-) diff --git a/app/courrier/page.tsx b/app/courrier/page.tsx index 34358605..8898c08a 100644 --- a/app/courrier/page.tsx +++ b/app/courrier/page.tsx @@ -1411,14 +1411,6 @@ export default function CourrierPage() { setComposeCc(replyEmail.cc); setComposeSubject(replyEmail.subject); setComposeBody(replyEmail.body); - - // Set the content directly on the div with a slight delay to ensure the component is mounted - setTimeout(() => { - if (composeBodyRef.current) { - composeBodyRef.current.innerHTML = replyEmail.body; - } - }, 0); - setComposeBcc(''); // Show the compose form and CC field for Reply All