Database Permissions Error
The app cannot read from the database. This usually means your Firestore Security Rules are too strict.
Fix: Go to Firebase Console > Firestore Database > Rules.
match /artifacts/{document=**} { allow read, write: if request.auth != null; }