remote-redux-devtools
remote-redux-devtools copied to clipboard
While Running the reactDev tools getting error as SocketProtocolError message: "Client connection establishment timed out", code: 4007.
I am facing an issue while trying to debug the Application with ReactDev Tools, showing errors on the console as
SocketProtocolError {name: "SocketProtocolError", message: "Client connection establishment timed out", code: 4007, stack: "SocketProtocolError: Client connection establishme…y=false&runModule=true&app=org.name.tflrn:5244:17"}.
remote-redux-dev tools: Socket connection errors are being suppressed. This can be disabled by setting suppressConnectErrors to 'false'.
below is the ref Store Configurations.
`import { createStore, applyMiddleware, compose } from "redux"; import { composeWithDevTools } from 'remote-redux-devtools'; import thunk from "redux-thunk"; import rootReducer from "./reducer/index";
export const middleware = [thunk];
const store = createStore( rootReducer, initialState, composeWithDevTools(applyMiddleware(...middleware)) );`
ReactNative Version : 0.64.1
Has anyone fixed this issue?
Need fix or work around for this.