diff --git a/app/hooks/useDraftSocket.ts b/app/hooks/useDraftSocket.ts index 2813160..b4564db 100644 --- a/app/hooks/useDraftSocket.ts +++ b/app/hooks/useDraftSocket.ts @@ -64,7 +64,7 @@ export function useDraftSocket(seasonId: string, teamId?: string): UseDraftSocke }); socket.on("connect_error", (error) => { - logger.error("Socket.IO connection error:", error); + logger.log("Socket.IO connection error:", error); // Don't set connectionError here — reconnect_attempt fires immediately after // and would clear it again, causing the error overlay to flicker on every // retry. Only show a hard error once all attempts are exhausted (reconnect_failed).