General Updates

This commit is contained in:
Ahmad 2024-09-27 22:53:25 -04:00
parent d4586b1fa5
commit beb661143b
No known key found for this signature in database
GPG key ID: 8FD8A93530D182BF
4 changed files with 12 additions and 7 deletions

View file

@ -38,7 +38,7 @@ const handler = async (data: InputType): Promise<ReturnType> => {
const stripeSession = await stripe.checkout.sessions.create({
success_url: settingsUrl,
cancel_url: settingsUrl,
// payment_method_types: ['card', 'paypal'],
payment_method_types: ['card', 'paypal'],
mode: 'subscription',
billing_address_collection: 'auto',
customer_email: user.emailAddresses[0].emailAddress,