We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 66ba9f1 commit 189328aCopy full SHA for 189328a
src/queries/me/render.ts
@@ -44,7 +44,7 @@ const setPrimaryEmail = (email: EmailAddress) => html`
44
<a
45
href="/members/change-primary-email?email=${sanitizeString(email)}"
46
>
47
- Set Primary Email
+ Make Primary Email
48
</a>
49
`;
50
tests/queries/me/render.test.ts
@@ -69,6 +69,6 @@ describe('/me render', () => {
69
it('shows the right actions for unverified and verified non-primary emails', () => {
70
const page = renderPage(viewModel);
71
expect(page.textContent).toContain('Send Verification Email');
72
- expect(page.textContent).toContain('Set Primary Email');
+ expect(page.textContent).toContain('Make Primary Email');
73
});
74
0 commit comments