Skip to content

Commit

Permalink
πŸš€ ver 2.1.1
Browse files Browse the repository at this point in the history
πŸš€ ver 2.1.1
login ν›„ detailPage data fetch ν•˜μ§€ μ•ŠλŠ” 문제 μˆ˜μ •
  • Loading branch information
Changyu-Ryou authored Nov 30, 2021
2 parents fe79931 + 733bf2b commit d711786
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/MeetingDetailPage/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -174,8 +174,8 @@ const MeetingDetailPage = () => {
};

useEffect(() => {
if (matchId?.params.id && !data) fetchData(matchId.params.id);
}, [data, fetchData, matchId.params.id]);
if (matchId?.params.id) fetchData(matchId.params.id);
}, [fetchData, matchId.params.id, userInfo]);

useEffect(() => {
if (isRoot && data && !sendLogEvent && userInfo && fromFeed) {
Expand Down

0 comments on commit d711786

Please sign in to comment.