From b7ad5340a37ed9bc765e788a04618ab10d82d05d Mon Sep 17 00:00:00 2001 From: Woz Date: Sat, 31 Jan 2026 12:38:57 +0000 Subject: [PATCH] fix(preview): increase max length from 150 to 200 chars Gmail Web displays up to 200 characters in email previews. The current 150 character limit causes body content to leak into the preview when the preview text is between 135-150 characters (because the whitespace padding is insufficient to fill Gmail's 200 char preview area). Fixes #2268 --- packages/preview/src/preview.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/preview/src/preview.tsx b/packages/preview/src/preview.tsx index 7c14221671..7eb73ae78c 100644 --- a/packages/preview/src/preview.tsx +++ b/packages/preview/src/preview.tsx @@ -6,7 +6,7 @@ export type PreviewProps = Readonly< } >; -const PREVIEW_MAX_LENGTH = 150; +const PREVIEW_MAX_LENGTH = 200; export const Preview = React.forwardRef( ({ children = '', ...props }, ref) => {