Skip to content
Open
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
3 changes: 3 additions & 0 deletions apps/desktop/src/main/ai/agent/worker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -710,6 +710,9 @@ async function runBuildOrchestrator(
});
} else {
// Pre-QA failure (planning or coding phase)
if (outcome.error) {
postError(`Build failed: ${outcome.error}`);
}
postTaskEvent('CODING_FAILED', { error: outcome.error });
}

Expand Down
2 changes: 1 addition & 1 deletion apps/desktop/src/renderer/components/Insights.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -405,7 +405,7 @@ export function Insights({ projectId }: InsightsProps) {
)}

{/* Main Chat Area */}
<div className="flex flex-1 flex-col">
<div className="flex flex-1 flex-col min-h-0">
{/* Header */}
<div className="flex items-center justify-between border-b border-border px-6 py-4">
<div className="flex items-center gap-3">
Expand Down