(providerId: string)
| 460 | * provider id, which is also what we store in `Account.providerId`). |
| 461 | */ |
| 462 | const getIssuerUrlForProviderId = async (providerId: string) => { |
| 463 | const providers = await getProviders(); |
| 464 | const matchingProvider = providers.find((provider) => provider.id === providerId); |
| 465 | return matchingProvider?.issuerUrl; |
| 466 | } |
no test coverage detected