From b5d26217acedd194c3e36bca76b9193dc84bf8af Mon Sep 17 00:00:00 2001 From: Liangjun Song <146005915+adai26@users.noreply.github.com> Date: Tue, 29 Jul 2025 14:03:34 +0100 Subject: [PATCH] Merge pull request #27291 from overleaf/ls-update-group-plan-display-name Update group plan display name GitOrigin-RevId: 7ffd46645f857d102e278833537d86ff6d74fb1c --- .../app/src/Features/Subscription/GroupPlansData.js | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/services/web/app/src/Features/Subscription/GroupPlansData.js b/services/web/app/src/Features/Subscription/GroupPlansData.js index 971a01f311..5f765056be 100644 --- a/services/web/app/src/Features/Subscription/GroupPlansData.js +++ b/services/web/app/src/Features/Subscription/GroupPlansData.js @@ -36,19 +36,16 @@ for (const [usage, planData] of Object.entries(groups)) { } const planName = - planCode === 'collaborator' - ? 'Standard (Collaborator)' - : capitalize(planCode) + planCode === 'collaborator' ? 'Standard' : capitalize(planCode) // Generate plans in settings for (const size of sizes) { const plan = { planCode: `group_${planCode}_${size}_${usage}`, - name: `${ - Settings.appName - } ${planName} - Group Account (${size} licenses) - ${capitalize( - usage - )}`, + name: + usage === 'enterprise' + ? `Group ${planName} Plan (${size} licenses)` + : `Group ${planName} Plan (${size} licenses) - ${capitalize(usage)}`, hideFromUsers: true, price_in_cents: groups[usage][planCode].USD[size].price_in_cents, annual: true,