diff --git a/frontend/src/app/chat/page.tsx b/frontend/src/app/chat/page.tsx index 7cddc62..2813958 100644 --- a/frontend/src/app/chat/page.tsx +++ b/frontend/src/app/chat/page.tsx @@ -324,6 +324,8 @@ function ChatpageInner() { setChatState("idle"); }; + const [inputValue, setInputValue] = useState(""); + return (
setMessage(e.target.value)} + onChange={(e) => { + setMessage(e.target.value); + setInputValue(e.target.value); + }} /> {/* */}