bpms_site/.svn/pristine/e3/e3fea537a8540a1945c7ee1b34542cf726791710.svn-base
2025-11-02 16:38:49 +03:30

14 lines
740 B
Plaintext

import { NEXT_DYNAMIC_NO_SSR_CODE } from "../shared/lib/lazy-dynamic/no-ssr-error";
export default function onRecoverableError(err) {
// Using default react onRecoverableError
// x-ref: https://github.com/facebook/react/blob/d4bc16a7d69eb2ea38a88c8ac0b461d5f72cdcab/packages/react-dom/src/client/ReactDOMRoot.js#L83
const defaultOnRecoverableError = typeof reportError === "function" ? // emulating an uncaught JavaScript error.
reportError : (error)=>{
window.console.error(error);
};
// Skip certain custom errors which are not expected to be reported on client
if (err.digest === NEXT_DYNAMIC_NO_SSR_CODE) return;
defaultOnRecoverableError(err);
}
//# sourceMappingURL=on-recoverable-error.js.map