fix: handleInput after submission of query

This commit is contained in:
Siddhant Rai
2024-08-05 14:25:21 +05:30
parent 59caf381f7
commit bd5fa83fe0

View File

@@ -138,6 +138,7 @@ export default function Conversation() {
handleQuestion({ question: inputRef.current.value });
}
inputRef.current.value = '';
handleInput();
}
};