Skip to content

Commit

Permalink
stash
Browse files Browse the repository at this point in the history
  • Loading branch information
Nick Grato committed Feb 28, 2024
1 parent f028002 commit 7d142e6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion client/components/modules/plans/plan-cards/BasePlanCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,8 @@ const BasePlanCard = ({
<div
className={`${styles.footer} ${footerClassProp} flex-justify-center`}
>
{getCTA()}
{/* {getCTA()} */}
<Button label="Subscribe" text="Subscribe" disabled={true} />
</div>
</div>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { ReactNode } from 'react';
import styles from './BasePlanCard.module.scss';
import { ValueProp } from '../plan.const';
import InfoBlock from '../InfoBlock/InfoBlock';
import { Icon } from '@mozilla/lilypad-ui';
import { Icon, Button } from '@mozilla/lilypad-ui';
import { FeaturesT } from '../plan.const';

type PricePropsT = {
Expand Down Expand Up @@ -127,7 +127,9 @@ export const BasePlanCard = ({
{/* FOOTER */}
<footer className={`${styles.footer_wrapper}`}>
{additionalContent}
<div className={styles.footer}>{confirmButton}</div>
<div className={styles.footer}>
<Button label="Subscribe" text="Subscribe" disabled={true} />
</div>
</footer>
</div>
);
Expand Down

0 comments on commit 7d142e6

Please sign in to comment.