From e47fa54ea8d8a52b380b76399b9ede358fb2fd64 Mon Sep 17 00:00:00 2001 From: Josh Creek <8179928+jcreek@users.noreply.github.com> Date: Tue, 22 Oct 2024 19:21:38 +0100 Subject: [PATCH] chore(*): Remove console log --- src/routes/checkout/success/+page.ts | 1 - 1 file changed, 1 deletion(-) 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 );