in src/index.js
connection.onmessage(function (data) {
store.dispatch(createMessageAction(endpoint, data))
})
connection does not have the function onmessage
should be someting like
connection.socket.onmessage(function (data) {
store.dispatch(createMessageAction(endpoint, data))
})