David Stack
David Stack
@benwinding Since `react-admin` 3.0 and [Collection Group queries](https://firebase.googleblog.com/2019/06/understanding-collection-group-queries.html) ([Docs](https://firebase.google.com/docs/firestore/query-data/queries#collection-group-query)) in Firestore are now released, there may be another way to handle nested collections. What if, when declaring a `Resource` in...
@benwinding I didn't even think about the other `CRUD` options besides **read** when I came up with this idea (oops)... soooo this may not work out at all. Especially since...
@gyatashoa RE deleting images from storage when a document is updated, there's an issue for that here: https://github.com/benwinding/react-admin-firebase/issues/115
@VihG Thanks for pointing me in the right direction. @benwinding I too am having the issue only when using the permanent filter in the list component. After temporarily removing it,...
@OlivierVoyer I had this same issue with wanting to deploy to multiple projects/apps and also easily test locally. What I ended up doing was using a `.env.local` file for local...
I just checked and the image in storage is still not deleted in v3.2.2. This is especially important now that filenames can be unique with https://github.com/benwinding/react-admin-firebase/pull/134 as there could be...
Yep, just tried it by adding question marks to all the parameters and it worked! 
Possible duplicate of #3222. I just did `npm install` after running `sanity upgrade` and it got resolved.
Adding a [`predeploy`](https://firebase.google.com/docs/hosting/test-preview-deploy#hooks) script to my `firebase.json` fixed it for me! ``` "hosting": { "predeploy": [ "npm run build && cd .output/server && npm install" ], ... ``` ~~Just make...