Description
I am working with React Native, Expo, Redux Toolkit, and the standalone React Native Debugger. Everything works fine, as far as the debugger is concerned, except for the Trace tab. Whenever I click any of the actions, while on this tab, I get a 500 Internal Server Error in the console
I get one such error each time I click on any action in the list.
To my eyes, it looks like Redux Devtools is trying to fetch the sourcemap from an invalid url:
http://192.168.8.113:19000/node_modules/expo/http://192.168.8.113:19000/node_modules/expo/AppEntry.map?platform=android&dev=true&hot=false&minify=false
Is this the consequence of some string concatenation gone wrong? Can this somehow be fixed on my side, or does it have to do with the devtools internals that I have no control over?