Skip to content

Commit

Permalink
Missing semicolon in PeopleSearchService
Browse files Browse the repository at this point in the history
  • Loading branch information
AJIXuMuK committed Aug 6, 2021
1 parent 4d92f6d commit 5bed57f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/services/PeopleSearchService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ export default class SPPeopleSearchService {
optionalText: "" // anything
} as IPeoplePickerUserItem;
case 'SecGroup':
const secondaryText = element.EntityData?.Email || element.ProviderName
const secondaryText = element.EntityData?.Email || element.ProviderName;
return {
id: element.Key,
loginName: element.LoginName ? element.LoginName : element.Key,
Expand Down

0 comments on commit 5bed57f

Please sign in to comment.