We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4817228 commit 61653a2Copy full SHA for 61653a2
1 file changed
packages/console/app/src/routes/stripe/webhook.ts
@@ -196,6 +196,7 @@ export async function POST(input: APIEvent) {
196
}
197
198
if (body.type === "customer.subscription.deleted") {
199
+ /*
200
const subscriptionID = body.data.object.id
201
if (!subscriptionID) throw new Error("Subscription ID not found")
202
@@ -205,6 +206,7 @@ export async function POST(input: APIEvent) {
205
206
} else if (productID === BlackData.productID()) {
207
await Billing.unsubscribeBlack({ subscriptionID })
208
209
+ */
210
211
if (body.type === "invoice.payment_succeeded") {
212
if (
0 commit comments