remove console log

This commit is contained in:
Carl-Gerhard Lindesvärd
2024-06-06 06:32:17 +02:00
parent 647e5d94e3
commit 3af1882d1e

View File

@@ -28,7 +28,6 @@ export default function useWS<T>(path: string, onMessage: (event: T) => void) {
if (baseUrl === `${ws}${path}`) return;
setBaseUrl(`${ws}${path}`);
}, [path, baseUrl, ws]);
console.log('socketUrl', socketUrl);
useWebSocket(socketUrl, {
shouldReconnect: () => true,