diff --git a/app/routes/platform_pages.py b/app/routes/platform_pages.py index 1631eee1..d816697a 100644 --- a/app/routes/platform_pages.py +++ b/app/routes/platform_pages.py @@ -239,6 +239,9 @@ async def signup_page( "name": limits["name"], "price_monthly": limits["price_monthly_cents"] / 100, "price_annual": (limits["price_annual_cents"] / 100) if limits.get("price_annual_cents") else None, + "orders_per_month": limits.get("orders_per_month"), + "team_members": limits.get("team_members"), + "is_enterprise": tier_code == TierCode.ENTERPRISE, }) context["tiers"] = tiers