Skip to content

Commit

Permalink
rm unused customer upsert
Browse files Browse the repository at this point in the history
  • Loading branch information
jordienr committed Jun 7, 2024
1 parent 4d18954 commit 6719698
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions apps/web/src/pages/api/webhooks/stripe.ts
Original file line number Diff line number Diff line change
Expand Up @@ -94,10 +94,10 @@ async function upserCustomer(event: Stripe.Event) {
}

// Update customer in database
await supabase.from("customers").upsert({
id: customer.id,
email: customer.email,
});
// await supabase.from("customers").upsert({
// id: customer.id,
// email: customer.email,
// });
}

async function upsertPrice(event: Stripe.Event) {
Expand Down

0 comments on commit 6719698

Please sign in to comment.