We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
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
The text was updated successfully, but these errors were encountered:
Has anyone fixed this issue?
Sorry, something went wrong.
Need fix or work around for this.
No branches or pull requests
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
The text was updated successfully, but these errors were encountered: