RND freezes after connect
See original GitHub issueWhen i try to connect to react native debugger, console region freezes, DOM view and Redux DevTools a still work.
Video: http://take.ms/nMu5U
import { createStore, applyMiddleware, compose } from 'redux';
import reducers from '../reducers';
import thunk from 'redux-thunk';
function configureStore(initialState) {
let enhancer;
if (global.__DEV__) {
const composeEnhancers = window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__ || compose;
enhancer = composeEnhancers(applyMiddleware(thunk));
} else {
enhancer = compose(applyMiddleware(thunk));
}
const store = createStore(reducers, initialState, enhancer);
return store;
}
const store = configureStore();
export default store;
react native debugger: 0.5.5
Issue Analytics
- State:
- Created 7 years ago
- Reactions:6
- Comments:33 (10 by maintainers)
Top Results From Across the Web
Remote Computer Freezes After Remote Desktop Connection ...
My issue is that when a user remote desktops (through VPN if that matters) into their work PC, their computer will have a...
Read more >Remote Desktop Randomly Freezes up
... random freeze ups when using rdp. The rdp session will lock up, but not give the normal message that the connection has...
Read more >How to Fix Windows 10 Remote Desktop Freezing Problem ...
This bug can also appear when there is any misconfiguration in Remote Desktop Protocol connectivity. Remote Desktop Connection Manager ...
Read more >6 Methods to Solve Computer Keeps Freezing (#5 Is Awesome)
Therefore, you should make sure that your drives are always updated. Excess heat can slow down a computer, eventually causing computer freeze.
Read more >Windows 10 freezes randomly [Solved] - Driver Easy
Solved Windows 10 random freeze/ lock-ups, update freeze or crash error by ... 4) Check to see if your computer still freezes randomly...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@jhen0409 I had try v0.6.0-beta1 and it works fine. Thanks you~
Both updating and removing sourcemaps (either) seems to work. Good job @jhen0409 !