UNPKG

@brandboostinggmbh/shopify-app-react-router

Version:

Shopify React Router - to simplify the building of Shopify Apps with React Router v7

13 lines (10 loc) 378 B
import { jsx } from 'react/jsx-runtime'; function errorBoundary(error) { if (error.constructor.name === 'ErrorResponse' || error.constructor.name === 'ErrorResponseImpl') { return (jsx("div", { dangerouslySetInnerHTML: { __html: error.data || 'Handling response' } })); } throw error; } export { errorBoundary }; //# sourceMappingURL=error.mjs.map