From 43a3d75f43032ac15bcf591ffb8483afd00edfc7 Mon Sep 17 00:00:00 2001 From: AzenKain Date: Sun, 7 Jun 2026 14:31:25 +0700 Subject: [PATCH] feat: implement ChatbotWidget component with chat history and message streaming support --- src/components/ui/chat/ChatbotWidget.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/ui/chat/ChatbotWidget.tsx b/src/components/ui/chat/ChatbotWidget.tsx index 797fdd6..e9d4650 100644 --- a/src/components/ui/chat/ChatbotWidget.tsx +++ b/src/components/ui/chat/ChatbotWidget.tsx @@ -307,7 +307,7 @@ export default function ChatbotWidget({ onChange={(e) => setInput(e.target.value)} onKeyDown={handleKeyDown} disabled={isLoading} - className="flex-1 bg-gray-100 dark:bg-gray-800 border-transparent focus:border-brand-500 focus:bg-white dark:focus:bg-gray-900 focus:ring-1 focus:ring-brand-500/20 rounded-full px-4 py-2.5 text-sm outline-none transition-all" + className="flex-1 bg-gray-100 dark:bg-gray-800 border-transparent focus:border-brand-500 focus:bg-white dark:focus:bg-gray-900 focus:ring-1 focus:ring-brand-500/20 rounded-full px-4 py-2.5 text-sm text-gray-900 dark:text-white outline-none transition-all" />