From 39b0473e38201c29ff1e5388946452d2eed44527 Mon Sep 17 00:00:00 2001 From: Haileyesus <118998054+blackmammoth@users.noreply.github.com> Date: Tue, 16 Jun 2026 16:52:12 +0300 Subject: [PATCH] fix: keep running-session polling active Keep the running-session poller active even when the local processing set is empty so runs started from another tab or client can still be discovered. --- src/components/app/AppContent.tsx | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/components/app/AppContent.tsx b/src/components/app/AppContent.tsx index ade11053..8445a0b2 100644 --- a/src/components/app/AppContent.tsx +++ b/src/components/app/AppContent.tsx @@ -121,16 +121,12 @@ function AppContentInner() { }, [refreshRunningSessions]); useEffect(() => { - if (processingSessions.size === 0) { - return; - } - const interval = window.setInterval(() => { void refreshRunningSessions(); }, 5000); return () => window.clearInterval(interval); - }, [processingSessions.size, refreshRunningSessions]); + }, [refreshRunningSessions]); usePaletteOpsRegister({ openSettings,