From d51c8b5ddd911f69c6bb1c8d724b3a679812d21b Mon Sep 17 00:00:00 2001 From: Abdullah Atta Date: Thu, 23 Jul 2026 13:18:26 +0500 Subject: [PATCH] web: basic fixes --- apps/web/src/dialogs/buy-dialog/plan-list.tsx | 44 +++++++------------ apps/web/src/views/plans.tsx | 6 +-- 2 files changed, 18 insertions(+), 32 deletions(-) diff --git a/apps/web/src/dialogs/buy-dialog/plan-list.tsx b/apps/web/src/dialogs/buy-dialog/plan-list.tsx index de1c778a7..08dd968d7 100644 --- a/apps/web/src/dialogs/buy-dialog/plan-list.tsx +++ b/apps/web/src/dialogs/buy-dialog/plan-list.tsx @@ -558,17 +558,6 @@ export function Footer() { ))} - ); } @@ -619,23 +608,24 @@ function RecurringPricing(props: PricingProps) { }} > {getCurrencySymbol(plan.currency)} - {monthlyPrice} + {monthlyPrice}{" "} + {isZero ? ( + "" + ) : ( + + {" "} + /Month + + )} - {isZero ? ( - "" - ) : ( - - {" "} - / month - - )} + Skip - +