fix(cli): mcp auth duplicate radio button icon (#8273)

This commit is contained in:
Dillon Mulroy 2026-01-13 14:22:26 -05:00 committed by GitHub
commit 797a56873d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -21,7 +21,7 @@ function getAuthStatusIcon(status: MCP.AuthStatus): string {
case "expired": case "expired":
return "⚠" return "⚠"
case "not_authenticated": case "not_authenticated":
return "" return ""
} }
} }