Skip to content

[locatorjs]: loading: Unsupported React renderer, only bundle type 1 (development) is supported but 0 (production) is found #6438

Description

@superplanehq-integration

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.

Metadata

Metadata

Assignees

No one assigned

    Labels

    bugSomething isn't working

    Type

    No type

    Projects

    Status
    Backlog

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions