diff --git a/src/app/(user-page)/my-meeting/_features/CardRightSection.tsx b/src/app/(user-page)/my-meeting/_features/CardRightSection.tsx index 3e1ca1d..2efa077 100644 --- a/src/app/(user-page)/my-meeting/_features/CardRightSection.tsx +++ b/src/app/(user-page)/my-meeting/_features/CardRightSection.tsx @@ -54,6 +54,17 @@ const CardRightSection = ({ } }; + // 맴버 명단 보기 + const handleShowMemberList = () => { + queryClient.setQueryData( + ['mymeeting', 'memberList', meetingId], + memberList, + ); + router.push( + `/my-meeting/my/user-list?meetingId=${meetingId}&type=${showPublicSelect ? 'created' : 'joined'}`, + ); + }; + const { data: currentUser, isLoading } = useBannerQueries(); if (isLoading || !currentUser) { return; @@ -109,12 +120,11 @@ const CardRightSection = ({ + {/*
로그인이 필요한 서비스입니다.