diff --git a/packages/react-native-web/src/exports/StyleSheet/index.js b/packages/react-native-web/src/exports/StyleSheet/index.js index 7a9403d3..3f86f6e7 100644 --- a/packages/react-native-web/src/exports/StyleSheet/index.js +++ b/packages/react-native-web/src/exports/StyleSheet/index.js @@ -1,11 +1,9 @@ import { canUseDOM } from 'fbjs/lib/ExecutionEnvironment'; import StyleSheet from './StyleSheet'; -// allow component styles to be editable in React Dev Tools -if (process.env.NODE_ENV !== 'production') { - if (canUseDOM && window.__REACT_DEVTOOLS_GLOBAL_HOOK__) { - window.__REACT_DEVTOOLS_GLOBAL_HOOK__.resolveRNStyle = StyleSheet.flatten; - } +// allow original component styles to be inspected in React Dev Tools +if (canUseDOM && window.__REACT_DEVTOOLS_GLOBAL_HOOK__) { + window.__REACT_DEVTOOLS_GLOBAL_HOOK__.resolveRNStyle = StyleSheet.flatten; } export default StyleSheet;