From f2d3971059eaa6ba9b4a58459a41ca19bfe02f3a Mon Sep 17 00:00:00 2001 From: Marcio Bevervanso Date: Mon, 13 Apr 2026 19:06:55 -0300 Subject: [PATCH] fix: correct Stripe Price ID --- supabase/functions/stripe-checkout/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/supabase/functions/stripe-checkout/index.ts b/supabase/functions/stripe-checkout/index.ts index 0e1a00c..a3f115c 100644 --- a/supabase/functions/stripe-checkout/index.ts +++ b/supabase/functions/stripe-checkout/index.ts @@ -8,7 +8,7 @@ const SUPABASE_ANON_KEY = Deno.env.get("SUPABASE_ANON_KEY")!; const SITE_URL = Deno.env.get("SITE_URL")!; // ✅ seus PRICE IDs (recorrentes) -const PRICE_MENSAL = "price_1TLsAFA5oAF7o14GoHRM3LZ8"; +const PRICE_MENSAL = "price_1TLsAFA5eAF7o14GeHRMJLzB"; const PRICE_TRIMESTRAL = "price_1SeOeXPHwVDouhbBcaiUy3vu"; const PRICE_ANUAL = "price_1SeOg4PHwVDouhbBTEiUPhMl";