Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions src/renderer/features/agents/main/active-chat.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4647,7 +4647,7 @@ const ChatViewInner = memo(function ChatViewInner({
/>
{/* Workspace subtitle: repo • branch */}
{(workspaceRepoName || workspaceBranch) && (
<div className="max-w-2xl mx-auto px-4">
<div className="max-w-4xl mx-auto px-4">
<span className="text-xs text-muted-foreground/50 truncate block">
{[workspaceRepoName, workspaceBranch].filter(Boolean).join(" • ")}
</span>
Expand Down Expand Up @@ -4692,7 +4692,7 @@ const ChatViewInner = memo(function ChatViewInner({
>
<div
ref={contentWrapperRef}
className="px-2 max-w-2xl mx-auto -mb-4 space-y-4"
className="px-2 max-w-4xl mx-auto -mb-4 space-y-4"
style={{
paddingBottom: "32px",
}}
Expand Down Expand Up @@ -4724,7 +4724,7 @@ const ChatViewInner = memo(function ChatViewInner({
{/* User questions panel - shows for both live (pending) and expired (timed out) questions */}
{displayQuestions && (
<div className="px-4 relative z-20">
<div className="w-full px-2 max-w-2xl mx-auto">
<div className="w-full px-2 max-w-4xl mx-auto">
<AgentUserQuestion
ref={questionRef}
pendingQuestions={displayQuestions}
Expand All @@ -4739,7 +4739,7 @@ const ChatViewInner = memo(function ChatViewInner({
{/* Stacked cards container - queue + status */}
{shouldShowStackedCards && (
<div className="px-2 -mb-6 relative z-10">
<div className="w-full max-w-2xl mx-auto px-2">
<div className="w-full max-w-4xl mx-auto px-2">
{/* Queue indicator card - top card */}
{queue.length > 0 && (
<AgentQueueIndicator
Expand Down Expand Up @@ -7831,7 +7831,7 @@ Make sure to preserve all functionality from both branches when resolving confli

{/* Disabled input while loading */}
<div className="px-2 pb-2">
<div className="w-full max-w-2xl mx-auto">
<div className="w-full max-w-4xl mx-auto">
<div className="relative w-full">
<PromptInput
className="border bg-input-background relative z-10 p-2 rounded-xl opacity-50 pointer-events-none"
Expand Down
2 changes: 1 addition & 1 deletion src/renderer/features/agents/main/chat-input-area.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -1247,7 +1247,7 @@ export const ChatInputArea = memo(function ChatInputArea({
}}
className="px-2 pb-2 shadow-sm shadow-background relative z-10"
>
<div className="w-full max-w-2xl mx-auto">
<div className="w-full max-w-4xl mx-auto">
<div
className="relative w-full"
onDragOver={handleDragOver}
Expand Down