added url for reactorton flipper plugin issue fix

This commit is contained in:
Nouman Tahir 2022-11-25 18:28:34 +05:00
parent b0ef9a1a28
commit 33779f1675

View File

@ -8,7 +8,9 @@ import ReactotronFlipper from "reactotron-react-native/dist/flipper"
const reactotron = Reactotron.setAsyncStorageHandler(AsyncStorage) // AsyncStorage would either come from `react-native` or `@react-native-community/async-storage` depending on where you get it from
.configure({
name: 'Ecency',
createSocket: path => new ReactotronFlipper(path)
//For flipper reactotron client connecting with app issue check this
//https://github.com/infinitered/flipper-plugin-reactotron/issues/63#issuecomment-1318354958
createSocket: (path) => new ReactotronFlipper(path),
})
.useReactNative() // add all built-in react native plugins
.use(reactotronRedux())