From 59e201fe93b60277ebe3fcf21513f065dd0408e2 Mon Sep 17 00:00:00 2001 From: Kartikeya <176560021+karti-ai@users.noreply.github.com> Date: Sat, 27 Jun 2026 17:23:47 -0700 Subject: [PATCH] fix(frontend): refresh pod list on leave so a deleted pod doesn't linger Co-Authored-By: Claude Opus 4.8 --- frontend/src/App.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx index d5e3622..bc6813b 100644 --- a/frontend/src/App.tsx +++ b/frontend/src/App.tsx @@ -177,6 +177,7 @@ export default function App() { setRoom(null); setJoinedPodId(null); sessionStorage.removeItem(SESSION_KEY); + void refresh(); // re-sync the list (e.g. if the pod was deleted out from under us) } const showReconnecting = restoring || (joinedPodId !== null && joinedPod === null);