Cannot connect to realtime server

I have enabled replication on my tables but I cannot connect to realtime server. My code:

const mySubscription = supabase
.from('')
.on('
', (payload) => {
console.log('Change received!', payload)
})
.subscribe()

I get failed-rejected response from ws in chrome devs tab.
Was this page helpful?