From 88ebb47dd84bafc7cccd3fee3e3a223c04986be4 Mon Sep 17 00:00:00 2001 From: Josh Hawkins <32435876+hawkeye217@users.noreply.github.com> Date: Tue, 30 Sep 2025 17:42:45 -0500 Subject: [PATCH] ensure group icon changes when using url param --- web/src/pages/Live.tsx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/web/src/pages/Live.tsx b/web/src/pages/Live.tsx index e732b450a..6b8a3fa43 100644 --- a/web/src/pages/Live.tsx +++ b/web/src/pages/Live.tsx @@ -35,6 +35,10 @@ function Live() { if (group) { setCameraGroup(cameraGroup); + // return false so that url cleanup doesn't occur here + // will be cleaned up by usePersistedOverlayState in the + // camera group selector s that the icon switches correctly + return false; } return true;