useEffect(() => { setCardsOfThisweek([] as IPost[][]); const getCardsOfWeek = async () => { for (const day of thisWeek) { const cardsOfEachDay = await getApi<IPost[]>( `/search/all/meetDate....${day.slice(0, 10)}...:.........."],"people`, ); setCardsOfThisweek((prev) => [...prev, cardsOfEachDay?.data]); } }; void getCardsOfWeek(); }, [page]);