(owner: Owner)
| 91 | } |
| 92 | // Workspace (org) sorts before Personal (user); then by connection name. |
| 93 | const ownerRank = (owner: Owner): number => (owner === "org" ? 0 : 1); |
| 94 | return [...byKey.values()] |
| 95 | .sort( |
| 96 | (a, b) => |
no outgoing calls
no test coverage detected