From c757e9a03e38ce36f5172945ba5aa6f641bd13bf Mon Sep 17 00:00:00 2001 From: Laxman patel Date: Mon, 9 Mar 2026 17:23:01 +0530 Subject: [PATCH] Extend Git Action failure Visibility --- apps/web/src/components/GitActionsControl.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/apps/web/src/components/GitActionsControl.tsx b/apps/web/src/components/GitActionsControl.tsx index 4f183e3935f..4c038414875 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, + }, }); } },