diff --git a/apps/web/src/components/ChatView.tsx b/apps/web/src/components/ChatView.tsx index be978a8cc0c7..a7ad462d2783 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: (