I am using react Hooks useEffect
to fetch data from API in my component
props.getUserInfoAction() is an Action from redux dispatching user info
Example
useEffect(() => {
props.getUserInfoAction();
}, []);
works great, I can get my data but i found that i have a warning
show up in my console.
React Hook useEffect has a missing dependency: 'props'. Either include it or remove the dependency array. However, 'props' will change when any prop changes, so the preferred fix is to destructure the 'props' object outside of the useEffect call and refer to those specific props inside useEffect react-hooks/exhaustive-deps
I tried to pass the props
in the array but by doing that i get an infinite loop of API call.
useEffect(() => {
props.getUserInfoAction();
}, [props]);
[]
empty array is meant for to run the useEffect when component first time mounts and unmounts. Is this what you want really? – Arup Rakshit