Skip to content

Commit 071f3d5

Browse files
authored
fix: suggested people aria labels (#2335)
1 parent c2588e8 commit 071f3d5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/mgt-components/src/components/mgt-people-picker/mgt-people-picker.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -956,7 +956,7 @@ export class MgtPeoplePicker extends MgtTemplatedComponent {
956956
person => person.id,
957957
person => {
958958
const lineTwo = person.jobTitle || (person as User).mail;
959-
const ariaLabel = `${this.strings.suggestedContact} ${person.displayName} ${lineTwo ?? ''}`;
959+
const ariaLabel = `${person.displayName} ${lineTwo ?? ''}`;
960960
return html`
961961
<li
962962
id="${person.id}"

0 commit comments

Comments
 (0)