Skip to content

Instantly share code, notes, and snippets.

@battaile
Created June 23, 2015 23:11
Show Gist options
  • Save battaile/9db0800cf54447c3e0a7 to your computer and use it in GitHub Desktop.
Save battaile/9db0800cf54447c3e0a7 to your computer and use it in GitHub Desktop.
Should this be set to something else or removed since react-devtools has been depracated?
//react/src/renderers/dom/ReactDOMClient.js line 55
// If we're in Chrome, look for the devtools marker and provide a download
// link if not installed.
if (navigator.userAgent.indexOf('Chrome') > -1) {
if (typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ === 'undefined') {
console.debug(
'Download the React DevTools for a better development experience: ' +
'https://fb.me/react-devtools'
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment