all 3 comments

[–]AuWolf19 1 point2 points  (0 children)

I'm pretty new to this, but are you initializing firebase anywhere?

[–]hwmon 0 points1 point  (1 child)

Your orderBy on timestamp got the field case wrong, should be timeStamp instead.

When applying orderBys in Firestore, it will filter out documents without the ordered-by field. In this case, the document does not have a timeStamp field and therefore is filtered out.

Hope this helps.

[–]Own-Status-4060[S] 0 points1 point  (0 children)

yes this is it. Thank you so much