We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e7e0427 commit ffcca46Copy full SHA for ffcca46
app/api/webhooks/route.ts
@@ -5,7 +5,6 @@ import {
5
upsertPriceRecord,
6
manageSubscriptionStatusChange
7
} from '@/utils/supabase-admin';
8
-import { headers } from 'next/headers';
9
10
const relevantEvents = new Set([
11
'product.created',
@@ -20,7 +19,7 @@ const relevantEvents = new Set([
20
19
21
export async function POST(req: Request) {
22
const body = await req.text();
23
- const sig = headers().get('Stripe-Signature') as string;
+ const sig = req.headers.get('stripe-signature') as string;
24
const webhookSecret = process.env.STRIPE_WEBHOOK_SECRET;
25
let event: Stripe.Event;
26
0 commit comments