diff --git a/frontend/src/proprietary/components/shared/config/configSections/plan/PlanCard.tsx b/frontend/src/proprietary/components/shared/config/configSections/plan/PlanCard.tsx index 20abc70a5..fdf11033e 100644 --- a/frontend/src/proprietary/components/shared/config/configSections/plan/PlanCard.tsx +++ b/frontend/src/proprietary/components/shared/config/configSections/plan/PlanCard.tsx @@ -81,13 +81,11 @@ const PlanCard: React.FC = ({ planGroup, isCurrentTier, isDowngra let displayPrice = monthly?.price || 0; let displaySeatPrice = monthly?.seatPrice; let displayCurrency = monthly?.currency || '£'; - let isYearlyPrice = false; if (yearly) { displayPrice = Math.round(yearly.price / 12); displaySeatPrice = yearly.seatPrice ? Math.round(yearly.seatPrice / 12) : undefined; displayCurrency = yearly.currency; - isYearlyPrice = true; } return (