From 76ab4d641d5e4a820dc1cbde902e034fa70a6112 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E3=81=8D=E3=82=80=E3=81=9D=E3=82=93?= Date: Sun, 2 Nov 2025 12:23:47 +0900 Subject: [PATCH] feat: Remove 4000 character limit for new chat input (#44) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Remove maxLength={4000} constraint from textarea - Remove character count display showing "/4000" - Allow unrestricted message length input Closes #38 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-authored-by: Claude --- src/app/projects/[projectId]/components/chatForm/ChatInput.tsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/app/projects/[projectId]/components/chatForm/ChatInput.tsx b/src/app/projects/[projectId]/components/chatForm/ChatInput.tsx index 7fd9b4d..0b23ce6 100644 --- a/src/app/projects/[projectId]/components/chatForm/ChatInput.tsx +++ b/src/app/projects/[projectId]/components/chatForm/ChatInput.tsx @@ -364,7 +364,6 @@ export const ChatInput: FC = ({ placeholder={placeholder} className={`${minHeight} resize-none border-0 focus-visible:ring-0 focus-visible:ring-offset-0 bg-transparent px-5 py-4 text-lg transition-all duration-200 placeholder:text-muted-foreground/60`} disabled={isPending || disabled} - maxLength={4000} aria-label={i18n._("Message input with completion support")} aria-describedby={helpId} aria-expanded={message.startsWith("/") || message.includes("@")} @@ -422,7 +421,6 @@ export const ChatInput: FC = ({ id={helpId} > {message.length} - /4000 {(message.startsWith("/") || message.includes("@")) && (