uncomment the websocketProvider code

This commit is contained in:
Aniket Katkar 2025-08-04 10:35:37 +05:30
parent 7d3c2155d9
commit c5aecb30e0

View File

@ -46,7 +46,7 @@ const WebSocketProvider: FC<Props> = ({ children }: Props) => {
// Since we have load balancer in our application
// We need to enforce transports to be websocket only
// Refer: https://socket.io/docs/v3/using-multiple-nodes/
// transports: ['websocket'],
transports: ['websocket'],
})
);
}, [currentUser]);