feat(creator-profile): 콘텐츠 섹션 UI 변경

This commit is contained in:
Yu Sung
2025-10-17 06:49:15 +09:00
parent 3de1b2a7d6
commit d178ba101f
3 changed files with 97 additions and 36 deletions

View File

@@ -203,8 +203,11 @@ struct UserProfileView: View {
if creatorProfile.creator.creatorId == UserDefaults.int(forKey: .userId) || creatorProfile.contentList.count > 0 {
UserProfileContentView(
userId: userId,
items: creatorProfile.contentList
items: creatorProfile.contentList,
totalContentCount: creatorProfile.totalContentCount,
ownedContentCount: creatorProfile.ownedContentCount
)
.padding(.horizontal, 24)
}
if viewModel.communityPostList.count > 0 {