Skip to content

Commit

Permalink
feat: 스터디원 목록이 있을 때만 스터디원 목록 컴포넌트를 렌더링하도록 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
llddang committed Dec 1, 2024
1 parent 5aa1157 commit 5431028
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/team/[teamId]/study/[studyId]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ const Page = ({ params }: { params: { teamId: number; studyId: number } }) => {
refetchMembers={handleRefetchMembers}
/>
)}
<Participant participantInfos={participantData || []} />
{participantData && <Participant participantInfos={participantData} />}
</Flex>
</Flex>
</Grid>
Expand Down

0 comments on commit 5431028

Please sign in to comment.