Duncan Bay

Results 18 comments of Duncan Bay

I'm not sure about other languages, but for web related tech you could run everything first through something like https://github.com/vitaly-t/decomment

Not entirely Benchmark's fault since Jest defaults to a [jsdom environment](http://facebook.github.io/jest/docs/configuration.html#testenvironment-string) :smile: Benchmark works as expected when the environment is set to node at the top of a test file....

Very similar setup for me as regards app, configureStore, and rootReducer - the only exception being that I have nested persistReducers. Same problem, I clear the state on a logout...

I had an inkling I might have to clear explicitly within each nested reducer, though that's kind of a pain even with a reducer decorator. Thanks for the info -...

I've tried various combinations of clearing state, and I often still get back stale state / or new state isn't persisted. I see that clearing from the top level removes...

The eventual solution I settled on (less than ideal) was to remove top level persistence and use nested persistors only, which seems to work for my case. ```javascript const rootReducer...

I have the same issue, where completions only show up while backspacing. Has been happening for about a week, after a restart which Fig crashed on login, and had to...

Switched to beta, restarted iterm2, and suggestions appear to be working fine 👍 Oddly enough I'm seeing this for `fig doctor` though ``` ✘ Daemon diagnostics: Daemon socket does not...

I'd love to see this as well to specify the location of third-party & local type imports 🙇

I'm also facing this issue. Using actions to handle async submission with `redux-logic`, similar to the above-mentioned `redux-saga` use cases. @erikras your `dispatchSubmit` proposal looks like it would provide the...