chore: remove debug logging and refine UI polish for overlay components

This commit is contained in:
Yusuf İpek
2025-10-08 23:15:23 +03:00
parent f85b2a942f
commit 5a33b01a11
5 changed files with 6 additions and 38 deletions
+3 -2
View File
@@ -239,8 +239,9 @@ function useOverlaySelection() {
// Heartbeat - connection is alive
});
globalSSEConnection.onerror = () => {
console.error('[Dashboard] SSE error');
globalSSEConnection.onerror = (error) => {
console.error('[Dashboard] SSE connection error - will auto-reconnect', error);
// EventSource automatically reconnects, no action needed
};
}