chore(*): Remove console log

This commit is contained in:
Josh Creek
2024-10-22 19:21:38 +01:00
parent a33779ce53
commit e47fa54ea8
-1
View File
@@ -20,7 +20,6 @@ export const load: PageLoad = async ({ fetch }) => {
// Save the stripe customer id in the customers table // Save the stripe customer id in the customers table
const stripeCustomerId = checkoutSession.customer as string; const stripeCustomerId = checkoutSession.customer as string;
console.log('stripeCustomerId', stripeCustomerId);
const createCustomerResponse = await fetch( const createCustomerResponse = await fetch(
'/api/checkout/create-customer?stripeCustomerId=' + stripeCustomerId '/api/checkout/create-customer?stripeCustomerId=' + stripeCustomerId
); );