You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Inferno app isn't showing properly in Chrome dev tools React tab, even though it's using using inferno-devtools.
Expected Current Behaviour
The inferno app should show in the Chrome dev tools React tab
Inferno Metadata
Inferno 7.1.12; works in Inferno 5.6.1, but seems to be broken since 6.0.0-rc.0
To reproduce, I created a very simple app using create-inferno-app, and added the Inferno dev tools; here's the modified index.js:
import{initDevTools}from'inferno-devtools';import{render}from'inferno';import'./index.css';importAppfrom'./App';import*asserviceWorkerfrom'./serviceWorker';initDevTools();render(<App/>,document.getElementById('root'));// If you want your app to work offline and load faster, you can change// unregister() to register() below. Note this comes with some pitfalls.// Learn more about service workers: http://bit.ly/CRA-PWAserviceWorker.unregister();
The text was updated successfully, but these errors were encountered:
Its possibly broken by some update to react-devtools browser addon. I think it would be more future proof to build our own browser addon. But for now lets just fix this.
Observed Behaviour
Inferno app isn't showing properly in Chrome dev tools React tab, even though it's using using inferno-devtools.
Expected Current Behaviour
The inferno app should show in the Chrome dev tools React tab
Inferno Metadata
Inferno 7.1.12; works in Inferno 5.6.1, but seems to be broken since 6.0.0-rc.0
To reproduce, I created a very simple app using
create-inferno-app
, and added the Inferno dev tools; here's the modifiedindex.js
:The text was updated successfully, but these errors were encountered: