Skip to content
Merged
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
4 changes: 2 additions & 2 deletions web/app/api/v1/agent/builds/[id]/status/route.ts
Original file line numberDiff line numberDiff line change
Expand Up@@ -283,7 +283,7 @@ export async function POST(
update.status === "completed"
? "Preview image built; preparing deployment"
: update.status === "failed"
? update.error || "Preview build failed"
? "Preview build failed"
: `Preview build ${update.status}...`,
logUrl,
});
Expand DownExpand Up@@ -325,7 +325,7 @@ export async function POST(
build.githubDeploymentId,
"failure",
{
description: update.error || "Build failed",
description: "Build failed",
logUrl,
environmentUrl,
},
Expand Down
Loading