Mateusz Burzyński
Mateusz Burzyński
> @Andarist have I mentioned lately that you're awesome? :) It has been a couple of days since the last time 🤣 > I did some stupid hacky things to...
> Maybe I'm misunderstanding something, but why would React not unsubscribe from the store in this scenario? There is (at least currently) no proposal that I'm aware of to stay...
I didn't yet have time to fully validate this but I think I got the fix for this: https://github.com/reduxjs/react-redux/pull/1941 What @bvaughn has mentioned 2 comments above got me to the...
> Out of curiosity, what happens if we were to alter the build so that it aliases react-redux to react-redux/next and use the built-in uSES instead of the shim? What...
I'm afraid that this should be reopened 😅 Based on the quote above I've found this to be an issue with the **current** version of React too. Repro: https://codesandbox.io/s/goofy-kapitsa-wkojvp?file=/src/App.js Scenario:...
You'd have to introduce smth like `block`: ```ts function block() { return call(() => new Promise(() => {})) } // ... yield block() ```
This is a byproduct of our strategy to evaluate the top-level machines from the code editor. The visualizer in here might actually try to create `fetchService` twice - once as...
Sideways question - what does this construct even mean? Based on my testing this seems like a huge footgun. ```ts export interface Foo { foo(): number } export class Foo...
This happens because a literal `1` type (source) is compared against a conditional type (target). When a conditional type is on the target side the types are only related to...
Note that you don’t have to use (and IMHO shouldn't) the global JSX namespace. You could solve this by configuring `jsxImportSource` that would bring its own **local** JSX namespace that...