diff --git a/app/(main)/[locale]/page.tsx b/app/(main)/[locale]/page.tsx index a575d1e2..1edd0997 100644 --- a/app/(main)/[locale]/page.tsx +++ b/app/(main)/[locale]/page.tsx @@ -2273,11 +2273,10 @@ export default function Home() { setShowComposer(false); } - // waiting for the body fetch - avoids the loading flicker. + // Find the list-level email for metadata (accountId, scheduled flags, etc.) + // but don't select it yet — wait for the full fetch to avoid a toolbar flash + // caused by rendering with the stub (no bodyValues) then re-rendering with the full email. const listEmail = activeEmails.find(e => e.id === email.id); - if (listEmail) { - selectEmail(listEmail); - } setLoadingEmail(true); diff --git a/components/email/email-viewer.tsx b/components/email/email-viewer.tsx index f5b4b986..5c9b0d42 100644 --- a/components/email/email-viewer.tsx +++ b/components/email/email-viewer.tsx @@ -3845,19 +3845,22 @@ export function EmailViewer({ {/* Dark/light mode toggle for HTML emails */} - {effectiveEmailContent.isHtml && ( - - )} + {/* More menu - click-based */}
@@ -4098,9 +4101,8 @@ export function EmailViewer({ return (
{/* Mobile More menu sidebar overlay */} {!isScheduled && isMobile && moreMenuOpen && (