Skip to content

Commit dd2d765

Browse files
jankeromnesroboquat
authored andcommitted
[dashboard] Further disambiguate 'Team Plans' vs 'Teams' based on user feedback (title, button, invite modal)
1 parent 9de6f13 commit dd2d765

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

components/dashboard/src/settings/Teams.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import { Disposable } from "@gitpod/gitpod-protocol";
2424
export default function Teams() {
2525

2626
return (<div>
27-
<PageWithSubMenu subMenu={settingsMenu} title='Teams' subtitle='View and manage subscriptions for your team with one centralized billing.'>
27+
<PageWithSubMenu subMenu={settingsMenu} title='Team Plans' subtitle='View and manage subscriptions for your team with one centralized billing.'>
2828
<AllTeams />
2929
</PageWithSubMenu>
3030
</div>);
@@ -435,7 +435,7 @@ function AllTeams() {
435435
<button className="self-end my-auto secondary" onClick={() => showBilling()}>Billing</button>
436436
)}
437437
{getActiveSubs().length > 0 && (
438-
<button className="self-end my-auto" disabled={!!pendingPlanPurchase || getAvailableSubTypes().length === 0} onClick={() => showCreateTeamModal()}>Create Team</button>
438+
<button className="self-end my-auto" disabled={!!pendingPlanPurchase || getAvailableSubTypes().length === 0} onClick={() => showCreateTeamModal()}>Create Team Plan</button>
439439
)}
440440
</div>
441441
</div>
@@ -564,7 +564,7 @@ function InviteMembersModal(props: {
564564
return (<Modal visible={true} onClose={props.onClose}>
565565
<h3 className="pb-2">Invite Members</h3>
566566
<div className="border-t border-b border-gray-200 dark:border-gray-800 mt-2 -mx-6 px-6 py-4 space-y-2">
567-
<p className="pb-2 text-gray-500 text-base">Invite members to the team using the URL below.</p>
567+
<p className="pb-2 text-gray-500 text-base">Invite members to the team plan using the URL below.</p>
568568

569569
<div className="flex flex-col space-y-2">
570570
<label htmlFor="inviteUrl" className="font-medium">Invite URL</label>
@@ -574,7 +574,7 @@ function InviteMembersModal(props: {
574574
<img src={copy} title="Copy Invite URL" className="absolute top-1/3 right-3" />
575575
</div>
576576
</div>
577-
<p className="pb-4 text-gray-500 text-sm">{copied ? "Copied to clipboard!" : "Use this URL to join this team."}</p>
577+
<p className="pb-4 text-gray-500 text-sm">{copied ? "Copied to clipboard!" : "Use this URL to join this team plan."}</p>
578578
</div>
579579

580580
</div>

0 commit comments

Comments
 (0)