From 98d082699c0c30825635c7ff7c4429a1ad6f375e Mon Sep 17 00:00:00 2001 From: Samir Boulahtit Date: Sat, 27 Dec 2025 20:17:23 +0100 Subject: [PATCH] fix: add missing tier fields to signup page context MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add orders_per_month, team_members, and is_enterprise to tier data passed to the signup template. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- app/routes/platform_pages.py | 3 +++ 1 file changed, 3 insertions(+) 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