Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

183
Views
firebase firestore function working intermittently

here is my code:

const q = query(
  collection(dataBase, "recordings"),
  orderBy("createdAt"),
  limitToLast(1)
);
await getDocs(q).then((querySnapshot) => {
  querySnapshot.forEach((element) => {
    let data = element.data();

    if (data.reviewedByUser.includes(userId)) {
      setUpdated(updated + 1);
    } else {
      setInfo((arr) => [...arr, data]);
    }
  });
});

why it is working intermittently: some of the recordings that I didnt reviewed dont show. Alas, the database dosent fetch them. Thanks in advance for the answers!

this Async function is executed in a useEffect hook. Accidently, the main useEffect function was Asynchronous. I wrapped it in a regular function. will it help?

about 4 years ago · Juan Pablo Isaza
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!