Don't transmit ui-side unhandled exceptions (the handler shall be there already)

This commit is contained in:
Enrico Ros
2025-07-29 16:10:13 -07:00
parent e983f9d8a9
commit 58aef2a97d
@@ -17,7 +17,7 @@ export function setupClientUncaughtErrorsLogging(): () => void {
filename: event.filename,
lineno: event.lineno,
colno: event.colno,
}, 'unhandled');
}, 'unhandled', { skipReporting: true });
};
// Handle unhandled promise rejections
@@ -26,7 +26,7 @@ export function setupClientUncaughtErrorsLogging(): () => void {
reason: event.reason,
message: event.reason?.message,
stack: event.reason?.stack,
}, 'unhandled');
}, 'unhandled', { skipReporting: true });
};
// install