Skip to content

Commit

Permalink
[fix] group 페이지 타입 에러 수정 (#448)
Browse files Browse the repository at this point in the history
  • Loading branch information
gxxrxn committed Jun 17, 2024
1 parent 617614f commit 66005ea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/group/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ const GroupPage = () => {
startDate,
endDate,
owner,
memberCount,
currentMemberCount,
commentCount,
isPublic,
bookGroupId,
Expand All @@ -94,7 +94,7 @@ const GroupPage = () => {
name: owner.nickname,
profileImageSrc: owner.profileUrl,
}}
memberCount={memberCount}
memberCount={currentMemberCount}
commentCount={commentCount}
isPublic={isPublic}
bookGroupId={bookGroupId}
Expand Down

0 comments on commit 66005ea

Please sign in to comment.