Spaces:
Build error
Build error
Upload components/ChatWindow.js with huggingface_hub
Browse files- components/ChatWindow.js +1 -2
components/ChatWindow.js
CHANGED
|
@@ -140,9 +140,8 @@ export default function ChatWindow({ chat, onBack, onSendMessage }) {
|
|
| 140 |
onChange={(e) => setMessageText(e.target.value)}
|
| 141 |
onKeyDown={handleKeyDown}
|
| 142 |
placeholder="Message"
|
| 143 |
-
className="w-full bg-transparent text-white px-4 py-3 max-h-32 focus:outline-none resize-none text-sm"
|
| 144 |
rows={1}
|
| 145 |
-
style={{ minHeight: '44px' }}
|
| 146 |
/>
|
| 147 |
</div>
|
| 148 |
<button
|
|
|
|
| 140 |
onChange={(e) => setMessageText(e.target.value)}
|
| 141 |
onKeyDown={handleKeyDown}
|
| 142 |
placeholder="Message"
|
| 143 |
+
className="w-full bg-transparent text-white px-4 py-3 min-h-[44px] max-h-32 focus:outline-none resize-none text-sm"
|
| 144 |
rows={1}
|
|
|
|
| 145 |
/>
|
| 146 |
</div>
|
| 147 |
<button
|