Kevin Bridges

Results 15 comments of Kevin Bridges

In thinking about this more, I suppose you are merely covering all the bases where a store's "initial" value can be specified. Certainly both readable/derived stores promote an API where...

Thanks Andréas. I haven't been following Expo releases, and I am not a NextJS user. Evidently as of SDK 18, Expo's registerRootComponent() is handled automatically. With that said, my understanding...

@sylvainlg ... you may have interest in this ... comments are welcome :-)

Thanks for your questions @sylvainlg. Regarding question: **"How aspects react to a rebase"** ... **A**: they would not (i.e. nothing would change). Aspect interaction only occurs during the startup process...

I'm not an expert with async/await, but what is the purpose of your async clause in this case, as you are directly using promise .then()/.catch() directly? Is it possible that...

@jh5696 I would still place some "temporary" diagnostic logs in each of the async callbacks. Of particular interest is to confirm that last "finally" then() clause is executing the done()....

Thanks @jeffbski for your quick response. Stated a slightly different way (if I understand what you are saying): 1. State change (i.e. reducer execution) only occurs after ALL validate/transform hooks...

I personally like the variability provided through the arity of the process() hook. This has become a common pattern used in such things as providing asynchrony to unit tests (i.e....

Prior to redux-logic, my business logic was scattered about in a variety of different places including: - component methods - thunks - and middleware injections In addition, I relied heavily...

Thanks for you analyses @dimfeld. I'm wondering if the author of #4742 (@pushkine) might have any insight on this issue?