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 })
)
}