Skip to content

Commit

Permalink
fix lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
JhontSouth committed Apr 4, 2024
1 parent 1864431 commit d53c68c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit d53c68c

Please sign in to comment.