i have two functions inside use effect, i want that the first function invoke only once, and the second invoke every render if state of "meetingArray" change
useEffect(() => {
getWeekMeetings();
meetingArray();
}, []);
how can i handle this?