(a: ToolRow, b: ToolRow)
| 293 | }; |
| 294 | |
| 295 | const compareTools = (a: ToolRow, b: ToolRow): number => |
| 296 | String(a.name).localeCompare(String(b.name)) || toolMatchId(a).localeCompare(toolMatchId(b)); |
| 297 | |
| 298 | const connectionTitle = (group: ToolkitConnectionGroup): string => |
| 299 | `${ownerLabel(group.owner)} ${group.integration} / ${group.connection}`; |
nothing calls this directly
no test coverage detected