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.
This commit is contained in:
Haze
2026-02-06 04:59:40 +08:00
Unverified
parent 94a6cecf2f
commit 7fded9bf8d

View File

@@ -77,9 +77,6 @@ export function ChatInput({ onSend, disabled = false, sending = false }: ChatInp
</Button>
</div>
<p className="text-xs text-muted-foreground mt-1.5 text-center">
Enter to send, Shift+Enter for new line
</p>
</div>
);
}