From ca13029af58747dd190b72183d440204a395378c Mon Sep 17 00:00:00 2001 From: Louis Knight-Webb Date: Thu, 19 Jun 2025 20:29:02 -0400 Subject: [PATCH] Task attempt 52d52cac-3e0d-47be-b7fc-7d810e35d2e6 - Final changes --- frontend/src/pages/task-attempt-compare.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frontend/src/pages/task-attempt-compare.tsx b/frontend/src/pages/task-attempt-compare.tsx index 33b711a6..a409d389 100644 --- a/frontend/src/pages/task-attempt-compare.tsx +++ b/frontend/src/pages/task-attempt-compare.tsx @@ -110,8 +110,9 @@ export function TaskAttemptComparePage() { const result: ApiResponse = await response.json(); if (result.success) { setMergeSuccess(true); - // Optionally refetch the diff to show updated state + // Refetch both diff and branch status to show updated state fetchDiff(); + fetchBranchStatus(); } else { setError("Failed to merge changes"); }