Merge pull request #14 from multica-ai/forrestchang/agent-default-text

fix: update agent settings copy and status label
This commit is contained in:
Jiayuan
2026-01-15 03:19:22 +08:00
committed by GitHub
2 changed files with 2 additions and 2 deletions

View File

@@ -15,7 +15,7 @@ export const DEFAULT_AGENTS: Record<string, AgentConfig> = {
},
opencode: {
id: 'opencode',
name: 'OpenCode',
name: 'opencode',
command: 'opencode',
args: ['acp'],
enabled: true,

View File

@@ -163,7 +163,7 @@ function AgentItem({ agent, isSelected, onSelect }: AgentItemProps) {
{/* Right side: status or button */}
{status === 'selected' ? (
<span className="text-xs text-green-600">Default</span>
<span className="text-xs text-green-600">Selected</span>
) : status === 'ready' ? (
<button
onClick={handleSelectClick}