chore: remove logging of received WebSocket messages in production (#487)

This commit is contained in:
Haileyesus
2026-03-05 13:01:43 +03:00
committed by GitHub
parent 2444209723
commit 9193feb6dc

View File

@@ -67,7 +67,6 @@ const useWebSocketProviderState = (): WebSocketContextType => {
try {
const data = JSON.parse(event.data);
setLatestMessage(data);
console.log('--->Received WebSocket message:', data);
} catch (error) {
console.error('Error parsing WebSocket message:', error);
}