Skip to content

Commit 189328a

Browse files
committed
Change wording for setting primary email
1 parent 66ba9f1 commit 189328a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/queries/me/render.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ const setPrimaryEmail = (email: EmailAddress) => html`
4444
<a
4545
href="/members/change-primary-email?email=${sanitizeString(email)}"
4646
>
47-
Set Primary Email
47+
Make Primary Email
4848
</a>
4949
`;
5050

tests/queries/me/render.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,6 @@ describe('/me render', () => {
6969
it('shows the right actions for unverified and verified non-primary emails', () => {
7070
const page = renderPage(viewModel);
7171
expect(page.textContent).toContain('Send Verification Email');
72-
expect(page.textContent).toContain('Set Primary Email');
72+
expect(page.textContent).toContain('Make Primary Email');
7373
});
7474
});

0 commit comments

Comments
 (0)