Dario De Cianni

Results 12 comments of Dario De Cianni

Could this lead to being unable to update addresses in checkout? We came across this issue while looking for a reason why shipping address/billing addresses don't get updated in checkout....

Hey @DidoMarchet, you're better off implementing it through saleor backend. You should watch for the field "requires_action" in stripe CreateIntent API, then pass that data to saleor-storefront, it'll let you...

@maarcingebala I actually managed to implement it and it's working pretty well at the moment, I was planning on opening a PR

> Sure, feel free to open a PR! Did you also implement related changes in SDK or in Saleor Storefront? One part that needs to be changed is the backend...

We may be encountering the same error, as we see logged in console: ``` click_initiate_payment_reject Object { err: "Expected an order id to be passed\nJn/

```jsx export const UserDetailBreadcrumb: BreadcrumbComponentType = ({ match }) => { console.log(match); if (!match.params["*"]) { return "Users"; } else if (match.params["*"].includes("edit")) { return "Edit"; } return {usersById[(match.params["*"] as unknown) as...

I can confirm it's still happening.

Hey @jetersen, what else is needed to get this merged to your code?

@jakesungjaekim if you're deploying using webhook you can also disable node_modules caching by appending this parameter to the URL `?buildCache=false` Additional info here: https://vercel.com/docs/concepts/deployments/deploy-hooks#build-cache

Thank you, I was actually going mad about 3ds v2 failed transaction!