diff --git a/client/src/components/Chat/Input/Composer/Queue.tsx b/client/src/components/Chat/Input/Composer/Queue.tsx
index 95b1ca79c2..0b4e2158a4 100644
--- a/client/src/components/Chat/Input/Composer/Queue.tsx
+++ b/client/src/components/Chat/Input/Composer/Queue.tsx
@@ -82,12 +82,16 @@ function Queue({ steering, conversationId, onEditToComposer, onRestoreToComposer
- {localize(
- fileCount === 1 ? 'com_ui_attachment_count_one' : 'com_ui_attachment_count',
- { count: fileCount },
- )}
+
+ {localize('com_ui_queued_attachment_count', { 0: String(fileCount) })}
+
+
+ {localize(
+ fileCount === 1 ? 'com_ui_attachment_count_one' : 'com_ui_attachment_count',
+ { count: fileCount },
+ )}
+
)}