( providerId: string, connectionMap: Map<string, IntegrationConnection>, )
| 54 | } |
| 55 | |
| 56 | function getProviderConnection( |
| 57 | providerId: string, |
| 58 | connectionMap: Map<string, IntegrationConnection>, |
| 59 | ): IntegrationConnection | undefined { |
| 60 | return connectionMap.get(providerId); |
| 61 | } |
| 62 | |
| 63 | export function IntegrationsManager() { |
| 64 | const navigate = useNavigate(); |
no test coverage detected