From 626cba568bf4af055dfc444930b37bbf03b3d67e Mon Sep 17 00:00:00 2001 From: ciregenz Date: Tue, 4 Aug 2026 09:10:06 -0700 Subject: [PATCH] [eric] chat: fullscreen transcript starts below the title bar, first query and attachments never clip --- frontend/src/app/pages/AgentChat/AgentChat.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frontend/src/app/pages/AgentChat/AgentChat.tsx b/frontend/src/app/pages/AgentChat/AgentChat.tsx index a7a86596..45d5ded4 100644 --- a/frontend/src/app/pages/AgentChat/AgentChat.tsx +++ b/frontend/src/app/pages/AgentChat/AgentChat.tsx @@ -1628,7 +1628,8 @@ const AgentChat: React.FC = ({ sessionId: sessionIdProp, onClose > {/* The welcome greeting is the FIRST thing and it's the agent talking, no user message above it, so give it real air under the header instead of sitting flush at the top. */} {/* Non-welcome chats still need headroom: at pt 0 the first user bubble's top edge clipped under the header. */} - + {/* Fullscreen carries the window title bar OVER the transcript, so the first message (and any attachment chips above it) needs to start below that chrome, not under it. */} + {session.context_overflow && (() => { const reason = session.context_overflow.reason; const isAuth = reason === 'openswarm_pro_auth_expired' || reason === 'anthropic_auth_invalid' || reason === 'auth_error';