I'm using redux and trying to fetch data when my component did update. I'm using useEffect hook to track posts update and getting the state with useSelector. I'm having issues as the component is making infinite fetching requests instead of a single request. Anyone knows how I can stop it from making infinite requests and make a single request if posts updated?
my code:
const posts = useSelector((state) => state.posts.posts);
useEffect(() => {
dispatch(getPosts(page));
}, [posts]);