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
-
+