Gabriel Poussif

Results 6 comments of Gabriel Poussif

Hey, does it help you if I tell you that I had to go from: ``` interface FBReduxSchema { companies: Company; users: User; } ``` to ``` import Entity =...

Did you see this? https://github.com/prescottprue/redux-firestore/issues/176

Good to know I'm not the only one. Luckily I can use `.set({ field: true }, { merge: true })`

In the meantime I'm using: ``` console.error = (function () { const { error } = console; return function (...args) { if (args[0] && args[0].match && args[0].match(/^warn(ing)?:/i)) { console.warn(...args); }...

@DamonOehlman I see. My view was that the library is in grade of making an absolute decision on where the caching can go based on the which function is a...

Mmm, yeah, that sounds much better than: `loadMore={!isLoading ? loadNextPage : () => {}}` :D