Skip to content

Commit

Permalink
Merge pull request #439 from mozilla/removebusinesshotfix
Browse files Browse the repository at this point in the history
merging hot fix for business plan card
  • Loading branch information
mikemorran authored Feb 29, 2024
2 parents 564984c + 393dc0a commit cc725e4
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 9 deletions.
3 changes: 1 addition & 2 deletions client/pages/subscribe/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ import {
PersonalPlanCard,
StarterPlanCard,
ProfessionalPlanCard,
BusinessPlanCard,
} from '@Modules/plans/plan-cards';
import { BillingPeriodE } from 'types/General';

Expand Down Expand Up @@ -38,7 +37,7 @@ const Subscribe = () => {
</div>
<div className="flex-justify-center flex-wrap">
<ProfessionalPlanCard billingPeriod={billingPeriod} />
<BusinessPlanCard billingPeriod={billingPeriod} />
{/* <BusinessPlanCard billingPeriod={billingPeriod} /> */}
</div>
</div>
<div className="flex">
Expand Down
14 changes: 7 additions & 7 deletions marketing/components/shared/Subscribe/Subscribe.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,11 @@ const Subscribe = ({ classProp = '' }: SubscribePropsT) => {
billingPeriod
);

const businessPlanData = getPricePageData(
regionCode,
PlansE.BUSINESS,
billingPeriod
);
// const businessPlanData = getPricePageData(
// regionCode,
// PlansE.BUSINESS,
// billingPeriod
// );

const loadingCards = isTabletDown ? [1] : [1, 2, 3, 4];

Expand Down Expand Up @@ -245,7 +245,7 @@ const Subscribe = ({ classProp = '' }: SubscribePropsT) => {
/>

{/* BUSINESS_COPY PLAN */}
<BasePlanCard
{/* <BasePlanCard
classProp={styles.plan_3}
title={BUSINESS_COPY.title}
subtitle={BUSINESS_COPY.subtitle}
Expand Down Expand Up @@ -275,7 +275,7 @@ const Subscribe = ({ classProp = '' }: SubscribePropsT) => {
}}
/>
}
/>
/> */}

{/* BUSINESS INQU*/}
{!isMobileDown && <HangerCard />}
Expand Down

0 comments on commit cc725e4

Please sign in to comment.