From 7fded9bf8dd87e647010954be06f4d03f62b241c Mon Sep 17 00:00:00 2001 From: Haze <709547807@qq.com> Date: Fri, 6 Feb 2026 04:59:40 +0800 Subject: [PATCH] refactor(chat): remove instruction text from ChatInput component - Removed the instruction text for sending messages (Enter to send, Shift+Enter for new line) from the ChatInput component to streamline the UI. --- src/pages/Chat/ChatInput.tsx | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/pages/Chat/ChatInput.tsx b/src/pages/Chat/ChatInput.tsx index be1c4d0dd..5c09f1d53 100644 --- a/src/pages/Chat/ChatInput.tsx +++ b/src/pages/Chat/ChatInput.tsx @@ -77,9 +77,6 @@ export function ChatInput({ onSend, disabled = false, sending = false }: ChatInp -
- Enter to send, Shift+Enter for new line -
); }