diff --git a/src/components/App/index.tsx b/src/components/App/index.tsx index 5ac57af4f..4d1f370ab 100644 --- a/src/components/App/index.tsx +++ b/src/components/App/index.tsx @@ -238,7 +238,7 @@ export const App = () => { ]) useEffect(() => { - const ws = new WebSocket('wss://staging.stakwork.com/cable') + const ws = new WebSocket('wss://staging.stakwork.com/cable?channel=ProjectLogChannel') ws.onopen = () => { console.log('WebSocket connection established') @@ -259,7 +259,7 @@ export const App = () => { // Cleanup when the component is unmounted return () => { - ws.close() + // ws.close() } }, [])