Skip to content

Commit aaf3589

Browse files
committed
feat: refactor name
1 parent ed54a3e commit aaf3589

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

chat/src/components/chat-provider.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,12 +45,12 @@ export type ServerStatus = "stable" | "running" | "offline" | "unknown";
4545

4646
export type AgentType = "claude" | "goose" | "aider" | "gemini" | "amp" | "codex" | "custom" | "unknown";
4747

48-
export type ColorAbbreviatePair = {
48+
export type AgentColorDisplayNamePair = {
4949
displayName: string;
5050
color: string;
5151
}
5252

53-
export const AgentTypeColorCoding: Record<Exclude<AgentType, "unknown">, ColorAbbreviatePair> = {
53+
export const AgentTypeColorCoding: Record<Exclude<AgentType, "unknown">, AgentColorDisplayNamePair> = {
5454
claude: {color: "bg-blue-300 ring-blue-300/35", displayName: "Claude Code"},
5555
goose: {color: "bg-green-300 ring-green-300/35", displayName: "Goose"},
5656
aider: {color: "bg-yellow-300 ring-yellow-300/35", displayName: "Aider"},

0 commit comments

Comments
 (0)