Matt

Results 15 comments of Matt

Encountering the same issue as @PTihomir, just wanted to provide a link to an example demonstrating the issue with attempting to scroll up when using CellMeasurer / scrollToIndex https://codesandbox.io/s/55O0639R

Related issue #61 The rc4 commit: https://github.com/Rezonans/redux-async-connect/commit/9af423c70b446ed63b9431c7d31770bebbf5f693

@Morriz find us the real fix man!

Experiencing the same issue here as well - undefined dest.firstChild.attributes['data-react-checksum']

I was stuck with doing this as well, you can pass a filter prop to ReduxAsyncConnect. You can do something like: ``` js ReactDOM.render( !item.deferred} />} history={history}> {routes} , dest...

@wehriam just ran into this issue as well

Replacing ``` this.res .set('Cache-Control', 'no-store') // Line 471 .set('Pragma', 'no-cache') .jsonp(response); ``` with ``` this.res .set({ 'Cache-Control': 'no-store', 'Pragma': 'no-cache' }); this.res.jsonp(response); ``` Seems to remedy the problem.