From bcc9f1bab1f2f25506c830b0bbb0b0f7334a1f3a Mon Sep 17 00:00:00 2001 From: noumantahir Date: Tue, 14 Jan 2025 12:24:51 +0500 Subject: [PATCH] removed redux-flipper usage --- reactotron-config.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/reactotron-config.ts b/reactotron-config.ts index 5f78c3acc6..2bbc451d6f 100644 --- a/reactotron-config.ts +++ b/reactotron-config.ts @@ -1,14 +1,10 @@ import AsyncStorage from '@react-native-async-storage/async-storage'; import Reactotron from 'reactotron-react-native'; import { reactotronRedux } from 'reactotron-redux'; -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', - // 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())