Skip to content

Commit 9620e40

Browse files
committed
fix(stripe): correct apiVersion to fix vercel build type error
1 parent e97ddbe commit 9620e40

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/api/webhook/stripe/route.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { NextResponse } from "next/server";
44
import { createClient as createAdminClient } from "@/lib/supabase/admin";
55

66
const stripe = new Stripe(process.env.STRIPE_SECRET_KEY!, {
7-
apiVersion: "2026-01-28.clover",
7+
apiVersion: "2026-02-25.clover",
88
});
99

1010
export async function POST(req: Request) {

0 commit comments

Comments
 (0)