diff --git a/web/app/components/share/chat/index.tsx b/web/app/components/share/chat/index.tsx index a3b18afb1b..ebe6ab0967 100644 --- a/web/app/components/share/chat/index.tsx +++ b/web/app/components/share/chat/index.tsx @@ -369,6 +369,9 @@ const Main: FC = ({ } const checkCanSend = () => { + if (currConversationId !== '-1') + return true + const prompt_variables = promptConfig?.prompt_variables const inputs = currInputs if (!inputs || !prompt_variables || prompt_variables?.length === 0)