mirror of
https://github.com/coder/coder.git
synced 2026-06-02 20:48:20 +00:00
fix(site/src/pages/AgentsPage): avoid stale live tail spacing (#25846)
This commit is contained in:
@@ -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),
|
||||
)}
|
||||
>
|
||||
|
||||
Reference in New Issue
Block a user