Skip to content

Commit

Permalink
Merge pull request #4441 from michaelntech/master
Browse files Browse the repository at this point in the history
fix: Update grammar to be more inclusive
  • Loading branch information
mzedel committed Jun 5, 2024
2 parents 12be94b + 9cc4050 commit 63ef23e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/js/components/settings/user-management/userdefinition.js
Original file line number Diff line number Diff line change
Expand Up @@ -171,9 +171,9 @@ export const UserDefinition = ({ currentUser, isEnterprise, onCancel, onSubmit,
<div className="flexbox margin-top-small margin-bottom">
<div className={classes.oauthIcon}>{provider.icon}</div>
<div className="info">
This user logs in using his <strong>{provider.name}</strong> account.
This user logs in using their <strong>{provider.name}</strong> account.
<br />
He can connect to {provider.name} to update his login settings.
They can connect to {provider.name} to update their login settings.
</div>
</div>
) : (
Expand Down
2 changes: 1 addition & 1 deletion tests/e2e_tests/integration/99-settings.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ test.describe('Settings', () => {
await page.goto(`${baseUrl}ui/help`);
await page.goto(`${baseUrl}ui/settings/user-management`);
}
await page.waitForSelector('css=button >> text=Add new user');
await page.waitForSelector('text=/Add new user/i');
});
test('allows email changes', async ({ baseUrl, loggedInPage: page }) => {
await page.goto(`${baseUrl}ui/settings/my-account`);
Expand Down

0 comments on commit 63ef23e

Please sign in to comment.