Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

reactotron not showing API traffic for axios 1.6.8 #1480

Open
satheeshwaran opened this issue May 13, 2024 · 0 comments
Open

reactotron not showing API traffic for axios 1.6.8 #1480

satheeshwaran opened this issue May 13, 2024 · 0 comments

Comments

@satheeshwaran
Copy link

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

Screenshot 2024-05-13 at 12 32 18 PM

axios@0.21.1

Screenshot 2024-05-13 at 12 33 08 PM

Reactotron version

3.7.0

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant