(tone: 'ok' | 'warn' | 'off')
| 5598 | } |
| 5599 | |
| 5600 | function statusChipClass(tone: 'ok' | 'warn' | 'off'): string { |
| 5601 | if (tone === 'ok') return 'border-accent/25 bg-accent/10 text-accent' |
| 5602 | if (tone === 'warn') return 'border-amber-500/30 bg-amber-500/10 text-amber-500' |
| 5603 | return 'border-paper-300/70 bg-paper-100/85 text-ink-500' |
| 5604 | } |
| 5605 | |
| 5606 | function McpClientRow({ |
| 5607 | title, |
no outgoing calls
no test coverage detected