(agentId: string)
| 32 | * Check if an agent ID should be hidden from rendering |
| 33 | */ |
| 34 | export const shouldHideAgent = (agentId: string): boolean => { |
| 35 | return HIDDEN_AGENT_IDS.some((hiddenId) => agentId.includes(hiddenId)) |
| 36 | } |
| 37 | |
| 38 | // Agent IDs that should be collapsed by default when they start |
| 39 | export const COLLAPSED_BY_DEFAULT_AGENT_IDS = [ |
no outgoing calls
no test coverage detected