reactotron not showing API traffic for axios 1.6.8
Opened this issue · 0 comments
satheeshwaran commented
Describe the bug
I came across this tool as an alternative to Flipper. I am using the below packages.
"reactotron-react-native": "^5.1.6",
"reactotron-redux": "^3.1.9",
import Reactotron, { networking } from 'reactotron-react-native';
import AsyncStorage from '@react-native-async-storage/async-storage';
import { reactotronRedux } from 'reactotron-redux';
const reactotron = Reactotron.setAsyncStorageHandler(AsyncStorage)
.configure({
name: 'React Native Demo',
})
.useReactNative({
asyncStorage: false, // there are more options to the async storage.
networking: {
// optionally, you can turn it off with false.
ignoreUrls: /symbolicate/,
},
editor: false, // there are more options to editor
errors: { veto: (stackFrame) => false }, // or turn it off with false
overlay: false, // just turning off overlay
})
.use(reactotronRedux())
.connect();
export default reactotron;
I used the package with axios@0.21.1
and could see network traffic from Axios.
Now I bumped Axios to 1.6.8 and I don't see traffic from Axios calls. However, I see traffic from other SDKs from inside the app.
axios@1.6.8
axios@0.21.1
Reactotron version
3.7.0