File tree 1 file changed +4
-4
lines changed
components/dashboard/src/settings 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -609,10 +609,10 @@ function AddMembersModal(props: {
609
609
return ( < Modal visible = { true } onClose = { props . onClose } >
610
610
< h3 className = "pb-2" > Add Members</ h3 >
611
611
< 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 >
613
613
614
614
< 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 >
616
616
< select name = "quantity" value = { quantity } className = "rounded-md w-full"
617
617
onChange = { ( e ) => setQuantity ( parseInt ( e . target . value || '1' , 10 ) ) } >
618
618
{ quantities . map ( n => (
@@ -621,11 +621,11 @@ function AddMembersModal(props: {
621
621
</ select >
622
622
</ div >
623
623
624
- < AlertBox > Total : { expectedPrice } per month</ AlertBox >
624
+ < AlertBox > Additional Charge : { expectedPrice } per month</ AlertBox >
625
625
626
626
</ div >
627
627
< 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 >
629
629
</ div >
630
630
</ Modal > ) ;
631
631
}
You can’t perform that action at this time.
0 commit comments