Estou com problemas ao receber os dados da api, na aplicação, depois de um longo período me retorna o seguinte erro : Possible Unhandled Promise Rejection (id:0): TypeError: Network request failed onerror @http://localhost:8081/index.bundle ... Código da requisição abaixo: Obs: testei no navegador chrome e carregou o feed corretamente
const [fotos, setFotos] = useState([])
useEffect(() =>{
const lerFotos = async() =>{
const fotosHTTP = await fetch('http://meuip:3030/feed')
const fotosJson = await fotosHTTP.json();
setFotos(fotosJson)
}
lerFotos()
}, [])