(account: { email: string; url: string }, isActive: boolean)
| 18 | export const defaultConsoleUrl = "https://console.opencode.ai" |
| 19 | |
| 20 | export const formatAccountLabel = (account: { email: string; url: string }, isActive: boolean) => |
| 21 | `${account.email} ${dim(account.url)}${activeSuffix(isActive)}` |
| 22 | |
| 23 | const formatOrgChoiceLabel = (account: { email: string }, org: { name: string }, isActive: boolean) => |
| 24 | `${org.name} (${account.email})${activeSuffix(isActive)}` |
no test coverage detected