diff --git a/pyproject.toml b/pyproject.toml index 6a0eaff6c..ef182b9d7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "langflow" -version = "0.0.84" +version = "0.0.85" description = "A Python package with a built-in web application" authors = ["Logspace "] maintainers = [ diff --git a/src/frontend/src/modals/chatModal/index.tsx b/src/frontend/src/modals/chatModal/index.tsx index 9ed09b346..5cae5c6b8 100644 --- a/src/frontend/src/modals/chatModal/index.tsx +++ b/src/frontend/src/modals/chatModal/index.tsx @@ -236,9 +236,9 @@ export default function ChatModal({ useEffect(() => { if ( - ws.current && + ws.current && (ws.current.readyState === ws.current.CLOSED || - ws.current.readyState === ws.current.CLOSING) + ws.current.readyState === ws.current.CLOSING) ) { connectWS(); setLockChat(false);