feat(settings): add weather and news widget toggles in settings page

This commit is contained in:
Willie Zutz 2025-08-17 12:31:30 -06:00
parent 0d4874a3b3
commit c830273651
4 changed files with 116 additions and 11 deletions

View file

@ -150,7 +150,11 @@ const MessageInput = ({
onChange={(e) => setMessage(e.target.value)}
minRows={1}
className="px-3 py-2 overflow-hidden flex rounded-lg bg-transparent text-sm resize-none w-full max-h-24 lg:max-h-36 xl:max-h-48"
placeholder={firstMessage ? 'Ask anything...' : 'Ask a follow-up'}
placeholder={
firstMessage
? 'What would you like to learn today?'
: 'Ask a follow-up'
}
autoFocus={true}
/>
<Optimization