diff --git a/src/routes/checkout/success/+page.ts b/src/routes/checkout/success/+page.ts index 63fc4ce..19e3544 100644 --- a/src/routes/checkout/success/+page.ts +++ b/src/routes/checkout/success/+page.ts @@ -20,7 +20,6 @@ export const load: PageLoad = async ({ fetch }) => { // Save the stripe customer id in the customers table const stripeCustomerId = checkoutSession.customer as string; - console.log('stripeCustomerId', stripeCustomerId); const createCustomerResponse = await fetch( '/api/checkout/create-customer?stripeCustomerId=' + stripeCustomerId );