Felipe Mullen
Felipe Mullen
I am guessing that the payment session causes the entire component tree to be mounted again when the data changes, looking at `CheckoutProvider`:
I have implemented a workaround for now: change `CheckoutForm` to call `useCheckout` instead of `useCart` ```typescript const CheckoutForm = () => { const { cart } = useCheckout(); ... }...
I came across this issue as well. From my understanding it happens when the stripe component is remounted incorrectly, caused by the implementation of the [stripe react package](https://www.npmjs.com/package/@stripe/react-stripe-js). I ended...
This is a very old issue, but here is some information. I am trying to get it working for enterprise as well, and the underlying problem is with `octocat`. The...
ok, a simple `npm i [email protected]` gets me up and running with enterprise configuration. For future internet users, here is how I am running the server ```bash export PORT=6000 export...