Empresas
Empregos
  • Sobre nós
  • Soluções
    • Publicação de vagas
      Publique sua vaga e receba candidatos qualificados em 48h.
    • Avaliações de candidatos
      Mais de 500 testes técnicos e psicológicos, mais anti-fraude.
    • Headhunting
      Busca executiva personalizada do início ao fim.
    • Folha de Pagamento + EOR
      Dispersão de folha e EOR em mais de 15 países da LATAM.
  • Preços
  • Empregos

0

100
Visualizações
Why is useEffect causing my application to rerender

I have a useEffect function that is calling some data from a database and then sets the value under as 'data'. My problem is that useEffect is causing my application to render twice causing the user profile to give two values during the session, making me unable to use data:

enter image description here


const [data, setData] = useState([]);
const [error, setError] = useState(null);

useEffect(() => {
    fetch("http://localhost:5000/record")
      .then((res) => res.json())
      .then(
        (result) => {
          setData(result);
        },
        (error) => {
          setError(error);
        }
      );
  }, []);
  let userProfile = data.find((x) => (x.email = user.email));
  console.log(userProfile);
about 4 years ago · Juan Pablo Isaza
1 Respostas
Responde à pergunta

0

I think this behavior is expected.

You can use useLayoutEffect if you want to have more control over when to fetch the data.

about 4 years ago · Juan Pablo Isaza Relatório
Responde à pergunta
Encontrar trabalhos remotos

Descubra a nova forma de encontrar um emprego!

melhores empregos
Principais categorias de trabalho
Empresas
Postar vaga Preços Comercial
Jurídico
Termos e Condições Política de privacidade
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomende algumas ofertas para mim
Preciso de ajuda