Finding the component throwing browser console errors

In the browser console, I have various messages and don't know an efficient way to track them down.

PerspectiveClient.ef24a2d510d2934354db.js:2 
        
       client.PropertyTree: bodyStyle: null found, style-formatted object expected.

I can click through all the components and try to find where I am setting a body style, but that is painful. Is there an easier way to find the component throwing this error?

For the View(s) displayed on that page, investigate the Components with a focus on any bindings for props.style. It looks like one such binding is returning a NoneType value (None/null) instead of an object.

1 Like