From e47c3e67c1e5b542498996f94451fa2392053a33 Mon Sep 17 00:00:00 2001 From: Jimmy Domagala-Tang Date: Mon, 23 Oct 2023 08:55:50 -0400 Subject: [PATCH] Merge pull request #15296 from overleaf/jdt-reword-send Update wording in make primary email action GitOrigin-RevId: df82ebcbec2ea101182f154673fd1c0fb4acbeaa --- .../components/emails/actions/make-primary/make-primary.tsx | 4 +++- .../components/emails/resend-confirmation-email-button.tsx | 2 +- .../components/emails/emails-section-actions.test.tsx | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/services/web/frontend/js/features/settings/components/emails/actions/make-primary/make-primary.tsx b/services/web/frontend/js/features/settings/components/emails/actions/make-primary/make-primary.tsx index 8e7f8bd391..8f96b13b85 100644 --- a/services/web/frontend/js/features/settings/components/emails/actions/make-primary/make-primary.tsx +++ b/services/web/frontend/js/features/settings/components/emails/actions/make-primary/make-primary.tsx @@ -82,7 +82,9 @@ function MakePrimary({ userEmailData, makePrimaryAsync }: MakePrimaryProps) { return ( <> {makePrimaryAsync.isLoading ? ( - {t('sending')}... + + {t('processing_uppercase')}… + ) : ( - {t('sending')}... + {t('sending')}… ) } diff --git a/services/web/test/frontend/features/settings/components/emails/emails-section-actions.test.tsx b/services/web/test/frontend/features/settings/components/emails/emails-section-actions.test.tsx index b18ba935c8..b27d644b80 100644 --- a/services/web/test/frontend/features/settings/components/emails/emails-section-actions.test.tsx +++ b/services/web/test/frontend/features/settings/components/emails/emails-section-actions.test.tsx @@ -173,7 +173,7 @@ describe('email actions - make primary', function () { expect(screen.queryByRole('dialog')).to.be.null await waitForElementToBeRemoved(() => - screen.getByRole('button', { name: /sending/i, hidden: true }) + screen.getByRole('button', { name: /Processing/i, hidden: true }) ) }