diff --git a/apps/sim/app/chat/[subdomain]/components/input/input.tsx b/apps/sim/app/chat/[subdomain]/components/input/input.tsx index 126d2de9963..c513965e079 100644 --- a/apps/sim/app/chat/[subdomain]/components/input/input.tsx +++ b/apps/sim/app/chat/[subdomain]/components/input/input.tsx @@ -7,7 +7,8 @@ import { Send, Square } from 'lucide-react' import { Tooltip, TooltipContent, TooltipProvider, TooltipTrigger } from '@/components/ui/tooltip' import { VoiceInput } from './voice-input' -const PLACEHOLDER = 'Enter a message or click the mic to speak' +const PLACEHOLDER_MOBILE = 'Enter a message' +const PLACEHOLDER_DESKTOP = 'Enter a message or click the mic to speak' const MAX_TEXTAREA_HEIGHT = 160 // Max height in pixels (e.g., for about 4-5 lines) const containerVariants = { @@ -195,31 +196,50 @@ export const ChatInput: React.FC<{
{!isActive && !inputValue && ( -
- {PLACEHOLDER} - -
+ `} +
+ )}