From e3cfdcd136601876e4abb98de0defe98cb47081f Mon Sep 17 00:00:00 2001 From: anovazzi1 Date: Wed, 7 Jun 2023 10:54:46 -0300 Subject: [PATCH] update version --- pyproject.toml | 2 +- src/frontend/src/modals/chatModal/index.tsx | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) 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);