@stripe It's not possible to send the Checkout redirect from the server?
In current flow, customer chooses a payment method (stripe, paypal, etc), *submits the form* (which creates a transaction in database) and is then typically redirected. Doesn't seem possible with Checkout?
There isn't a way to redirect from the server side but you could make some changes in your current flow such as making an AJAX request to your own server before calling redirectToCheckout or do the database write when you receive the `checkout.session.complete` webhook.