Pepguy commited on
Commit
c52a88f
·
verified ·
1 Parent(s): 22375a1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -431,7 +431,7 @@ def fetch_wardrobe_from_firestore(uid: str) -> List[Dict[str, Any]]:
431
  try:
432
  # try subcollection first
433
  subcol = fs.collection("users").document(uid).collection("wardrobe")
434
- docs = subcol.limit(200).get()
435
  items = []
436
  for d in docs:
437
  dd = d.to_dict() or {}
 
431
  try:
432
  # try subcollection first
433
  subcol = fs.collection("users").document(uid).collection("wardrobe")
434
+ docs = subcol.limit(1000).get()
435
  items = []
436
  for d in docs:
437
  dd = d.to_dict() or {}