diff --git a/libraries/botframework-connector/src/auth/authenticationConstants.ts b/libraries/botframework-connector/src/auth/authenticationConstants.ts index b67f6d8c7d..c8eee6e47c 100644 --- a/libraries/botframework-connector/src/auth/authenticationConstants.ts +++ b/libraries/botframework-connector/src/auth/authenticationConstants.ts @@ -175,7 +175,7 @@ export namespace AuthenticationConstants { /** * Tenant ID claim name. As used in Microsoft AAD tokens. */ - export const TenantIdClaim = "tid"; + export const TenantIdClaim = 'tid'; /** * AppId used for creating skill claims when there is no appId and password configured. diff --git a/libraries/botframework-connector/src/auth/emulatorValidation.ts b/libraries/botframework-connector/src/auth/emulatorValidation.ts index eb22ba82ca..1972ccea53 100644 --- a/libraries/botframework-connector/src/auth/emulatorValidation.ts +++ b/libraries/botframework-connector/src/auth/emulatorValidation.ts @@ -83,7 +83,7 @@ export namespace EmulatorValidation { if ( tenantId != '' && ToBotFromBotOrEmulatorTokenValidationParameters.issuer.find((issuer) => issuer.includes(tenantId)) == - null + null ) { //If the issuer doesn't exist, this is added using the Emulator token issuer structure. //This allows use of the SingleTenant authentication through Emulator.