From ac8f430d131fe0f07d798a10f810cd424dc9e917 Mon Sep 17 00:00:00 2001 From: rhino-ty Date: Fri, 6 Dec 2024 14:23:54 +0900 Subject: [PATCH] fix: Delete maxLength fo chat Input --- client/src/components/chat/ChatInput.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/client/src/components/chat/ChatInput.tsx b/client/src/components/chat/ChatInput.tsx index 45e2ce37..c4823010 100644 --- a/client/src/components/chat/ChatInput.tsx +++ b/client/src/components/chat/ChatInput.tsx @@ -74,7 +74,6 @@ export const ChatInput = memo(() => { value={inputMessage} onChange={(e) => setInputMessage(e.target.value)} placeholder="메시지를 입력하세요" - maxLength={100} disabled={!isConnected || shouldDisableInput} autoComplete="off" />