fix: billing

This commit is contained in:
David Nguyen
2025-02-20 12:17:55 +11:00
parent d2f3d24542
commit 250381fec8
3 changed files with 14 additions and 18 deletions

View File

@ -3,5 +3,5 @@ import { stripeWebhookHandler } from '@documenso/ee/server-only/stripe/webhook/h
import type { Route } from './+types/webhook.trigger';
export async function action({ request }: Route.ActionArgs) {
return stripeWebhookHandler(request);
return await stripeWebhookHandler(request);
}