diff --git a/apps/web/src/app/dashboard/agents/[id]/chat/[chatId]/page.tsx b/apps/web/src/app/dashboard/agents/[id]/chat/[chatId]/page.tsx index de42e6f..618ca87 100644 --- a/apps/web/src/app/dashboard/agents/[id]/chat/[chatId]/page.tsx +++ b/apps/web/src/app/dashboard/agents/[id]/chat/[chatId]/page.tsx @@ -623,7 +623,7 @@ export default function AgentChatPage(): React.ReactElement { onKeyDown={handleKeyDown} placeholder="Type a message..." rows={1} - className="flex-1 px-4 py-3 bg-background border border-border rounded-lg text-foreground placeholder:text-foreground-tertiary focus:outline-none focus:ring-2 focus:ring-primary/50 focus:border-primary resize-none min-h-[48px] max-h-[200px]" + className="flex-1 px-4 py-3 bg-white border border-border rounded-lg text-foreground placeholder:text-foreground-tertiary focus:outline-none focus:ring-2 focus:ring-primary/50 focus:border-primary resize-none min-h-[48px] max-h-[200px]" style={{ height: 'auto', minHeight: '48px', diff --git a/apps/web/src/app/dashboard/agents/[id]/page.tsx b/apps/web/src/app/dashboard/agents/[id]/page.tsx index 55d9169..c301fcc 100644 --- a/apps/web/src/app/dashboard/agents/[id]/page.tsx +++ b/apps/web/src/app/dashboard/agents/[id]/page.tsx @@ -211,7 +211,7 @@ conv = resp.json() # conv['data']['messages']`, const currentExample = examples[effectiveLang] ?? examples.curl ?? { language: 'bash', code: '' }; return ( -
@@ -674,7 +674,7 @@ export default function AgentDetailPage(): React.ReactElement {
}
>
{/* Configuration */}
-
+
Configuration
{!isEditing && (
@@ -698,7 +698,7 @@ export default function AgentDetailPage(): React.ReactElement {
name="name"
value={formData.name}
onChange={handleChange}
- className="w-full px-3 py-2 bg-background border border-border rounded-lg text-foreground focus:outline-none focus:ring-2 focus:ring-primary/50 focus:border-primary"
+ className="w-full px-3 py-2 bg-white border border-border rounded-lg text-foreground focus:outline-none focus:ring-2 focus:ring-primary/50 focus:border-primary"
/>
@@ -711,7 +711,7 @@ export default function AgentDetailPage(): React.ReactElement {
name="uid"
value={formData.uid}
onChange={handleChange}
- className="w-full px-3 py-2 bg-background border border-border rounded-lg text-foreground font-mono text-sm focus:outline-none focus:ring-2 focus:ring-primary/50 focus:border-primary"
+ className="w-full px-3 py-2 bg-white border border-border rounded-lg text-foreground font-mono text-sm focus:outline-none focus:ring-2 focus:ring-primary/50 focus:border-primary"
/>
@@ -729,7 +729,7 @@ export default function AgentDetailPage(): React.ReactElement {
value={formData.description}
onChange={handleChange}
rows={2}
- className="w-full px-3 py-2 bg-background border border-border rounded-lg text-foreground focus:outline-none focus:ring-2 focus:ring-primary/50 focus:border-primary resize-none"
+ className="w-full px-3 py-2 bg-white border border-border rounded-lg text-foreground focus:outline-none focus:ring-2 focus:ring-primary/50 focus:border-primary resize-none"
/>
@@ -746,7 +746,7 @@ export default function AgentDetailPage(): React.ReactElement {
name="provider"
value={formData.provider}
onChange={handleChange}
- className="w-full px-3 py-2 bg-background border border-border rounded-lg text-foreground focus:outline-none focus:ring-2 focus:ring-primary/50 focus:border-primary"
+ className="w-full px-3 py-2 bg-white border border-border rounded-lg text-foreground focus:outline-none focus:ring-2 focus:ring-primary/50 focus:border-primary"
>
{SUPPORTED_PROVIDERS.map((p) => (