fix(chatModal): change wss to ws in production environment WebSocket URL

Probable fix to #232
This commit is contained in:
Gabriel Almeida 2023-05-02 10:40:16 -03:00
commit 385de55c92

View file

@ -59,7 +59,7 @@ export default function ChatModal({
const urlWs =
process.env.NODE_ENV === "development"
? `ws://localhost:7860/chat/${flow.id}`
: `wss://${window.location.host}/chat/${flow.id}`;
: `ws://${window.location.host}/chat/${flow.id}`;
const newWs = new WebSocket(urlWs);
newWs.onopen = () => {