Event handler
How catch api error
Example:
window.addEventListener(
'apiErrorEvent',
evt => {
console.log(evt.detail.errors);
},
false
);
Last updated
Was this helpful?
window.addEventListener(
'apiErrorEvent',
evt => {
console.log(evt.detail.errors);
},
false
);
Last updated
Was this helpful?
Was this helpful?