Hacker News new | ask | show | jobs
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
        }],
    )
1 comments

Annoyingly, I thought about doing this a few minutes into the outage and then said: "Nah... they'll fix it pretty quickly".

Five hours later I finally made the change. UGH.