diff --git a/apps/web/src/components/GitActionsControl.tsx b/apps/web/src/components/GitActionsControl.tsx index 4f183e3935..4c03841487 100644 --- a/apps/web/src/components/GitActionsControl.tsx +++ b/apps/web/src/components/GitActionsControl.tsx @@ -408,7 +408,10 @@ export default function GitActionsControl({ gitCwd, activeThreadId }: GitActions type: "error", title: "Action failed", description: err instanceof Error ? err.message : "An error occurred.", - data: threadToastData, + data: { + ...threadToastData, + dismissAfterVisibleMs: 10_000, + }, }); } },