diff --git a/packages/ui/src/components/chat-input.tsx b/packages/ui/src/components/chat-input.tsx index 2e4573b91..20f65a07e 100644 --- a/packages/ui/src/components/chat-input.tsx +++ b/packages/ui/src/components/chat-input.tsx @@ -50,7 +50,7 @@ export const ChatInput = forwardRef( editorProps: { attributes: { class: - "w-full resize-none bg-transparent px-1 py-1 text-sm text-foreground outline-none placeholder:text-muted-foreground disabled:cursor-not-allowed", + "w-full resize-none bg-transparent px-1 py-1 text-base text-foreground outline-none placeholder:text-muted-foreground disabled:cursor-not-allowed", }, handleKeyDown(_view, event) { // Guard for IME composition (Chinese/Japanese input) diff --git a/packages/ui/src/components/chat.tsx b/packages/ui/src/components/chat.tsx index 60f7519a1..ea51d0369 100644 --- a/packages/ui/src/components/chat.tsx +++ b/packages/ui/src/components/chat.tsx @@ -59,7 +59,7 @@ export function Chat() { ) : messages.length === 0 ? (
- Send a message to start the conversation + Your Agent is ready
) : ( @@ -88,7 +88,7 @@ export function Chat() {