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__0>.",
"subscription_will_remain_active_until_end_of_trial_period_x": "Your subscription will remain active until the end of your trial period, <0>__terminationDate__0>.",
"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__0> 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__0> 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.`
)
})
})