|
|
|
|
|
by navarro485
1398 days ago
|
|
A temporary stop-gap solution for this (if you are using Stripe Checkout) is to disable tax calculation. https://stripe.com/docs/api/checkout/sessions/create#create_... session = stripe.checkout.Session.create(
automatic_tax={'enabled': False},
payment_method_types=['card'],
mode='subscription',
line_items=[{
'price': price,
'quantity': quantity
}],
)
|
|
Five hours later I finally made the change. UGH.