(integration: any)
| 255 | } |
| 256 | |
| 257 | function showLinearDetail(integration: any): React.ReactNode { |
| 258 | const team = integration?.data?.teams?.find( |
| 259 | (t: any) => t?.id === integration?.externalId |
| 260 | ); |
| 261 | return team ? `${team.key} ${team.name}` : ''; |
| 262 | } |
| 263 | |
| 264 | function ShowIntegrationDetail({ |
| 265 | api, |
no test coverage detected