Skip to content

Commit 58a2536

Browse files
committed
[team-sub] fix wording on add members
fixes #7806
1 parent 5d721fc commit 58a2536

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
@@ -609,10 +609,10 @@ function AddMembersModal(props: {
609609
return (<Modal visible={true} onClose={props.onClose}>
610610
<h3 className="pb-2">Add Members</h3>
611611
<div className="border-t border-b border-gray-200 dark:border-gray-800 mt-2 -mx-6 px-6 py-4">
612-
<p className="pb-4 text-gray-500 text-base">Add members to the team plan.</p>
612+
<p className="pb-4 text-gray-500 text-base">Select the number of members to add to the team plan.</p>
613613

614614
<div className="flex flex-col space-y-2 pb-4">
615-
<label htmlFor="quantity" className="font-medium">Members</label>
615+
<label htmlFor="quantity" className="font-medium">Additional Members</label>
616616
<select name="quantity" value={quantity} className="rounded-md w-full"
617617
onChange={(e) => setQuantity(parseInt(e.target.value || '1', 10))}>
618618
{quantities.map(n => (
@@ -621,11 +621,11 @@ function AddMembersModal(props: {
621621
</select>
622622
</div>
623623

624-
<AlertBox>Total: {expectedPrice} per month</AlertBox>
624+
<AlertBox>Additional Charge: {expectedPrice} per month</AlertBox>
625625

626626
</div>
627627
<div className="flex justify-end mt-6">
628-
<button className={"ml-2"} onClick={() => props.onBuy(getPlan(), quantity, props.sub)}>Continue to Billing</button>
628+
<button className={"ml-2"} onClick={() => props.onBuy(getPlan(), quantity, props.sub)}>Continue</button>
629629
</div>
630630
</Modal>);
631631
}

0 commit comments

Comments
 (0)