Merge branch 'dev' of ssh://git.commumedia.org:2222/alex/headquarter into dev

This commit is contained in:
2026-05-24 19:33:49 +00:00
2 changed files with 28 additions and 3 deletions
+2 -2
View File
@@ -58,10 +58,10 @@ export const AppShell = () => {
useEffect(() => {
void loadSessions();
// Poll every 10 seconds
// Poll every 30 seconds (reduced from 10s to avoid ERR_NETWORK_CHANGED from Docker network changes)
const interval = setInterval(() => {
void loadSessions();
}, 10000);
}, 30000);
return () => clearInterval(interval);
}, [loadSessions]);