From b366d17a05096f2f812bf4cd1cff72ae1050ee1d Mon Sep 17 00:00:00 2001 From: Marcio Bevervanso Date: Mon, 13 Apr 2026 19:15:48 -0300 Subject: [PATCH] fix: stripe edge function typescript imports --- 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 a3f115c..f44306d 100644 --- a/supabase/functions/stripe-checkout/index.ts +++ b/supabase/functions/stripe-checkout/index.ts @@ -1,6 +1,6 @@ /// -import Stripe from "https://esm.sh/stripe@16.12.0?target=deno"; +import Stripe from "npm:stripe@16.12.0"; const STRIPE_SECRET_KEY = Deno.env.get("STRIPE_SECRET_KEY")!; const SUPABASE_URL = Deno.env.get("SUPABASE_URL")!;