From 2f7393012fe9f1d1b31cec7eb6ae14a40b08f12a Mon Sep 17 00:00:00 2001
From: "t3-code[bot]" <269035359+t3-code[bot]@users.noreply.github.com>
Date: Tue, 1 Sep 2026 00:47:45 +0000
Subject: [PATCH 1/2] fix(web): keep settled thread notice compact
Co-authored-by: Utkarsh Patil <73941998+UtkarshUsername@users.noreply.github.com>
---
apps/web/src/components/ChatView.tsx | 13 +++++++++----
1 file changed, 9 insertions(+), 4 deletions(-)
diff --git a/apps/web/src/components/ChatView.tsx b/apps/web/src/components/ChatView.tsx
index be978a8cc0c7..c774bc7ac5be 100644
--- a/apps/web/src/components/ChatView.tsx
+++ b/apps/web/src/components/ChatView.tsx
@@ -4962,14 +4962,19 @@ function ChatViewContent(props: ChatViewProps) {
return null;
}
const isSnoozed = activeThreadSnoozed;
+ const parkedThreadDescription = isSnoozed
+ ? "Sending a message wakes it and moves it back to Active in the sidebar."
+ : "Send a message to unsettle";
return {
id: `thread-${isSnoozed ? "snoozed" : "settled"}:${activeThread?.id ?? "unknown"}`,
variant: "info",
icon: isSnoozed ? : ,
- title: `This thread is ${isSnoozed ? "snoozed" : "settled"}`,
- description: isSnoozed
- ? "Sending a message wakes it and moves it back to Active in the sidebar."
- : "Sending a message moves it back to Active in the sidebar.",
+ title: (
+ <>
+ This thread is {isSnoozed ? "snoozed" : "settled"}
+ {parkedThreadDescription}
+ >
+ ),
actions: (