From 1bb5d3e237d167db9e7a866003f19eaa959537f5 Mon Sep 17 00:00:00 2001 From: ciregenz Date: Mon, 22 Jun 2026 03:28:08 -0700 Subject: [PATCH] [eric] apps: drop redundant reloadKey bump on manual save (captureSignal covers it) --- frontend/src/app/pages/Views/HistoryPanel.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frontend/src/app/pages/Views/HistoryPanel.tsx b/frontend/src/app/pages/Views/HistoryPanel.tsx index b4e0eeaf..127e43d2 100644 --- a/frontend/src/app/pages/Views/HistoryPanel.tsx +++ b/frontend/src/app/pages/Views/HistoryPanel.tsx @@ -91,8 +91,9 @@ const HistoryPanel: React.FC = ({ outputId, isAgentActive, saveLabel, onB const handleSave = useCallback(async () => { setSaving(true); try { + // No reloadKey bump: captureOutputVersion.fulfilled bumps captureSignal, + // which already drives the refetch. Bumping both = a double fetch. await dispatch(captureOutputVersion({ id: outputId, source: 'manual', label: saveLabel || '' })).unwrap(); - setReloadKey((k) => k + 1); flash('ok', 'Saved this version.'); } catch { flash('err', "Couldn't save this version. Try again.");