@@ -83,7 +83,7 @@ export const PricingAddons = ({ isYearly = false, setIsYearly, enterprisePlan })
8383
8484 const enterpriseUsersCost = ( isYearly ? enterprisePlan . yearlyprice : enterprisePlan . monthlyprice ) * ( enterpriseUsers > 0 ? enterpriseUsers : 1 ) ;
8585
86- setTotalPrice ( baseTotal + subAddOnTotal + enterpriseUsersCost ) ;
86+ setTotalPrice ( ( baseTotal * 12 ) + subAddOnTotal + enterpriseUsersCost ) ;
8787 } else {
8888 setTotalPrice ( 0 ) ;
8989 }
@@ -145,10 +145,10 @@ export const PricingAddons = ({ isYearly = false, setIsYearly, enterprisePlan })
145145 ) ;
146146
147147 if ( matchingPlanLink ) {
148- const enterpriseUserText = enterpriseUsers > 0 ? ` and ${ enterpriseUsers } enterprise user${ enterpriseUsers > 1 ? "s" : "" } ` : "" ;
148+ const enterpriseUserSeats = enterpriseUsers > 0 ? ` and ${ enterpriseUsers } enterprise user${ enterpriseUsers > 1 ? "s" : "" } ` : "" ;
149149 return {
150150 link : matchingPlanLink . link ,
151- name : `Subscribe (${ currentLearnerCount } learners${ targetSubAddonName ? " " + targetSubAddonName : "" } ${ enterpriseUserText } )`
151+ name : `Subscribe (${ currentLearnerCount } learners${ targetSubAddonName ? " " + targetSubAddonName : "" } ${ enterpriseUserSeats } )`
152152 } ;
153153 }
154154
@@ -447,7 +447,7 @@ export const PricingAddons = ({ isYearly = false, setIsYearly, enterprisePlan })
447447 } ) ) || [ ] ;
448448 } ) ( ) }
449449 />
450- < Box sx = { { display : "flex" , my : 8 , justifyContent : "space-between" } } >
450+ < Box sx = { { display : "flex" , mt : 2 , mb : 2 , justifyContent : "space-between" } } >
451451 < Typography variant = "body2" sx = { { fontStyle : "italic" , color : "text.secondary" , fontFamily : "\"Qanelas Soft\", \"Open Sans\", sans-serif" } } >
452452 Looking for a plan larger than 2,500 learners? Great! < a href = "/company/contact" > Let us know</ a > .
453453 </ Typography >
0 commit comments