From c0a836082c24d64ef7ff2c5df2f7aa7a01f08fbc Mon Sep 17 00:00:00 2001 From: ilkin-overleaf <100852799+ilkin-overleaf@users.noreply.github.com> Date: Wed, 8 Oct 2025 16:34:20 +0300 Subject: [PATCH] Merge pull request #28865 from overleaf/ii-domain-capture-join-success-message-edit [web] Domain capture join group message edit GitOrigin-RevId: 8949dff2e1d95dd978ee5e04165ad4cefe51b088 --- services/web/frontend/extracted-translations.json | 2 +- .../components/notifications/groups/group-sso-setup-success.tsx | 2 +- services/web/locales/en.json | 2 +- .../features/project-list/components/notifications.test.tsx | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/services/web/frontend/extracted-translations.json b/services/web/frontend/extracted-translations.json index 6e773780f0..1e0e80cf83 100644 --- a/services/web/frontend/extracted-translations.json +++ b/services/web/frontend/extracted-translations.json @@ -1752,7 +1752,7 @@ "subscription_will_remain_active_until_end_of_billing_period_x": "", "subscription_will_remain_active_until_end_of_trial_period_x": "", "success_sso_set_up": "", - "success_youve_successfully_join_group": "", + "success_youve_successfully_joined_group": "", "suggest_a_different_fix": "", "suggest_fix": "", "suggested": "", diff --git a/services/web/frontend/js/features/project-list/components/notifications/groups/group-sso-setup-success.tsx b/services/web/frontend/js/features/project-list/components/notifications/groups/group-sso-setup-success.tsx index a114795a7e..2ac39c5705 100644 --- a/services/web/frontend/js/features/project-list/components/notifications/groups/group-sso-setup-success.tsx +++ b/services/web/frontend/js/features/project-list/components/notifications/groups/group-sso-setup-success.tsx @@ -30,7 +30,7 @@ function GroupSsoSetupSuccess() { type="success" content={ ]} // eslint-disable-line react/jsx-key values={{ groupName: joinedGroupName }} shouldUnescape diff --git a/services/web/locales/en.json b/services/web/locales/en.json index 3dbee5e729..8c65466799 100644 --- a/services/web/locales/en.json +++ b/services/web/locales/en.json @@ -2241,7 +2241,7 @@ "subscription_will_remain_active_until_end_of_billing_period_x": "Your subscription will remain active until the end of your billing period, <0>__terminationDate__.", "subscription_will_remain_active_until_end_of_trial_period_x": "Your subscription will remain active until the end of your trial period, <0>__terminationDate__.", "success_sso_set_up": "Success! Single sign-on is all set up for you.", - "success_youve_successfully_join_group": "Success! You’ve joined the <0>__groupName__ group subscription. Your group has SSO enabled so you can log in without needing to remember a password.", + "success_youve_successfully_joined_group": "Success! You’ve joined the <0>__groupName__ group subscription. Your group has SSO enabled.", "suggest_a_different_fix": "Suggest a different fix", "suggest_fix": "Suggest fix", "suggested": "Suggested", diff --git a/services/web/test/frontend/features/project-list/components/notifications.test.tsx b/services/web/test/frontend/features/project-list/components/notifications.test.tsx index 7c32a2c307..dd75920b5b 100644 --- a/services/web/test/frontend/features/project-list/components/notifications.test.tsx +++ b/services/web/test/frontend/features/project-list/components/notifications.test.tsx @@ -1089,7 +1089,7 @@ describe('', function () { renderWithinProjectListProvider(GroupSsoSetupSuccess) const alert = screen.getByRole('alert') expect(alert.textContent).to.contain( - `Success! You’ve joined the ${groupName} group subscription. Your group has SSO enabled so you can log in without needing to remember a password.` + `Success! You’ve joined the ${groupName} group subscription. Your group has SSO enabled.` ) }) })