Posts by Peter Adam • 46 points
1 post
- 
		3 votes1 answer206 viewsA: React Hook useEffect has a Missing dependency: 'storeInfo'const [storeInfo, setStoreInfo] = useState(null); useEffect(()=>{ const loadAll = async () => { let chosenInfo = await Tmdb.getStoreById(635302); setStoreInfo(chosenInfo); }…