Skip to content

Commit 5f894c0

Browse files
committed
remove logs
1 parent abb546c commit 5f894c0

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

template/app/src/payment/stripe/checkoutUtils.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,10 @@ export async function ensureStripeCustomer(
1515
});
1616

1717
if (stripeCustomers.data.length === 0) {
18-
console.log("Creating a new Stripe customer");
1918
return stripeClient.customers.create({
2019
email: userEmail,
2120
});
2221
} else {
23-
console.log("Using an existing Stripe customer");
2422
return stripeCustomers.data[0];
2523
}
2624
}

0 commit comments

Comments
 (0)