Skip to content

Commit b339c84

Browse files
committed
Adds missing margins to the error block
1 parent 9285f10 commit b339c84

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/webapp/app/components/runs/v3/DeploymentError.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ type DeploymentErrorProps = {
99

1010
export function DeploymentError({ errorData }: DeploymentErrorProps) {
1111
return (
12-
<div className="flex flex-col gap-2 rounded-sm border border-rose-500/50 p-3">
12+
<div className="mx-3 mb-3 flex flex-col gap-2 rounded-sm border border-rose-500/50 p-3">
1313
<DeploymentErrorHeader title={errorData.name ?? "Error"} titleClassName="text-rose-500" />
1414
{errorData.message && <Callout variant="error">{errorData.message}</Callout>}
1515
{errorData.stack && (

0 commit comments

Comments
 (0)