From f92e381b64250bdf9d101285870a3a817611d349 Mon Sep 17 00:00:00 2001 From: "railway-app[bot]" <68434857+railway-app[bot]@users.noreply.github.com> Date: Fri, 20 Mar 2026 08:51:41 +0000 Subject: [PATCH] fix: remove outdated apiVersion from lib/stripe.ts Stripe client --- lib/stripe.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/stripe.ts b/lib/stripe.ts index e150b71..2b12b80 100644 --- a/lib/stripe.ts +++ b/lib/stripe.ts @@ -6,7 +6,6 @@ const getStripeClient = () => { throw new Error('Stripe secret key not configured. Set STRIPE_SECRET_KEY environment variable.'); } return new Stripe(stripeKey, { - apiVersion: '2023-10-16', typescript: true, }); };