1
0
Fork 0

comments resolved

pull/887/head
Sourav Chanduka 2021-08-19 10:49:39 +05:30
parent 1f8d7b5a64
commit 09e9478907
2 changed files with 2 additions and 2 deletions

View File

@ -351,6 +351,6 @@ export function getState(name: string): string {
return process.env[`STATE_${name}`] || ''
}
export async function getIDToken(aud: string | undefined = undefined): Promise<string> {
export async function getIDToken(aud?: string | undefined): Promise<string> {
return await OidcClient.getIDToken(aud)
}