in client/src/pages/checkout.js [63:71]
setCheckoutErrors(errors) {
let checkoutErrors = Array.isArray(errors)
? errors
: errors?.payment?.method || errors?.items;
this.state.checkoutErrors = Array.isArray(checkoutErrors)
? checkoutErrors
: [];
this.requestUpdate();
}