diff --git a/src/apps/chat/components/composer/llmattachments/LLMAttachmentButton.tsx b/src/apps/chat/components/composer/llmattachments/LLMAttachmentButton.tsx index e2f42f6c1..1ae4034be 100644 --- a/src/apps/chat/components/composer/llmattachments/LLMAttachmentButton.tsx +++ b/src/apps/chat/components/composer/llmattachments/LLMAttachmentButton.tsx @@ -164,7 +164,7 @@ function attachmentLabelText(attachmentDraft: AttachmentDraft): string { if (converter.id === 'rich-text') return 'Rich HTML'; } - return ellipsizeFront(attachmentDraft.label, 24); + return ellipsizeFront(attachmentDraft.label, 22); }