diff --git a/apps/web/components/chat/index.tsx b/apps/web/components/chat/index.tsx
index 6dccfb7d..bf3dc7b7 100644
--- a/apps/web/components/chat/index.tsx
+++ b/apps/web/components/chat/index.tsx
@@ -1255,8 +1255,13 @@ export function ChatSidebar({
))}
{(status === "submitted" || status === "streaming") && (
-
+
+ {messageQueue.length > 0 && (
+
+ QUEUED
+
+ )}
)}
@@ -1329,66 +1334,6 @@ export function ChatSidebar({
)}
- {messageQueue.length > 0 && (
-
-
-
-
- {messageQueue.length}
-
-
- Queued messages
-
-
-
- {messageQueue.length}/{CHAT_QUEUE_LIMIT}
-
-
-
- {messageQueue.map((queued, index) => {
- const model = modelNames[queued.model]
- const reasoningLabel =
- queued.reasoningEffort === "thinking" ? "Thinking" : "Instant"
- return (
-
-
- {index + 1}
-
-
-
- {queued.text}
-
-
- {model.name} {model.version} - {reasoningLabel}
-
-
-
-
- )
- })}
-
-
- )}
-