View in Sentry
Summary
Root Cause
Suggested Fix
Add a regex for the LocatorJS 'Unsupported React renderer' message to IGNORED_CONSOLE_MESSAGES so this known benign third-party warning is dropped like the Dash0/Vue Devtools cases.
web_src/src/sentry.ts:11-17
export const IGNORED_CONSOLE_MESSAGES = [
// Dash0 Web SDK logs export failures to the console.
/^(Failed to send telemetry to|Error sending telemetry to|Failed to fetch)/,
// Vue Devtools browser extension warns when multiple versions are installed.
// Our app is React-only; this noise originates from the user's extensions.
/^Another version of Vue Devtools/,
+ // LocatorJS browser extension/tool logs this when it inspects a production
+ // React build; unrelated to our app code.
+ /^\[locatorjs\]: loading: Unsupported React renderer/,
];
Auto-generated by the Sentry Root Cause Analysis app on SuperPlane.
View in Sentry
Summary
Root Cause
web_src/src/sentry.ts → isIgnoredConsoleMessage / Sentry.init beforeBreadcrumb()Suggested Fix
Add a regex for the LocatorJS 'Unsupported React renderer' message to IGNORED_CONSOLE_MESSAGES so this known benign third-party warning is dropped like the Dash0/Vue Devtools cases.
Auto-generated by the Sentry Root Cause Analysis app on SuperPlane.