fix(site/src/pages/AgentsPage): avoid stale live tail spacing (#25846)

This commit is contained in:
Danielle Maywood
2026-05-29 12:55:16 +01:00
committed by GitHub
parent 60f0bfe94c
commit 4144eb3c4f
2 changed files with 8 additions and 2 deletions
@@ -71,7 +71,13 @@ export const LiveStreamTailContent = ({
}
return (
<div className="flex flex-col gap-2">
<div
className={
isTranscriptEmpty
? "flex flex-col gap-2"
: "mt-2 flex flex-col gap-2 empty:mt-0"
}
>
{shouldRenderEmptyState && (
<div className="py-12 text-center text-content-secondary">
<p className="text-sm">Start a conversation with your agent.</p>
@@ -106,7 +106,7 @@ export const ChatPageTimeline: FC<ChatPageTimelineProps> = ({
<div
data-testid="chat-timeline-wrapper"
className={cn(
"mx-auto flex w-full flex-col gap-2 py-6",
"mx-auto flex w-full flex-col py-6",
chatWidthClass(chatFullWidth),
)}
>