1
0
Fork 0
mirror of synced 2024-09-02 10:41:09 +12:00

Remove logs

This commit is contained in:
Andrew Kingston 2022-09-02 12:04:18 +01:00
parent ed5dbd8c79
commit cc50f696ff

View file

@ -15,7 +15,6 @@ export const initWebsocket = () => {
const proto = tls ? "wss:" : "ws:"
const host = location.hostname
const port = location.port || (tls ? 443 : 80)
console.log(`${proto}//${host}:${port}`)
const socket = io(`${proto}//${host}:${port}`, {
path: "/socket/client",
})