diff --git a/docs/Troubleshooting.md b/docs/Troubleshooting.md index 41ec9be6e..05247d97e 100644 --- a/docs/Troubleshooting.md +++ b/docs/Troubleshooting.md @@ -70,10 +70,10 @@ To revert the `User Search Header Paths` and `Header Search Paths` build setting ### No transports available -React Native implements a polyfill for WebSockets. These [polyfills](https://github.com/facebook/react-native/blob/master/Libraries/JavaScriptAppEngine/Initialization/InitializeJavaScriptAppEngine.js) are initialized as part of the react-native module that you include in your application through `import React from 'react-native'`. If you load another module that requires WebSockets, such as [Firebase](https://github.com/facebook/react-native/issues/3645), be sure to load/require it after react-native: +React Native implements a polyfill for WebSockets. These [polyfills](https://github.com/facebook/react-native/blob/master/Libraries/JavaScriptAppEngine/Initialization/InitializeJavaScriptAppEngine.js) are initialized as part of the react-native module that you include in your application through `import React from 'react'`. If you load another module that requires WebSockets, such as [Firebase](https://github.com/facebook/react-native/issues/3645), be sure to load/require it after react-native: ``` -import React from 'react-native'; +import React from 'react'; import Firebase from 'firebase'; ```