fix: 커뮤니티 댓글

- 무료 커뮤니티 글, 내 커뮤니티 글 에서 비밀댓글 체크박스가 보이지 않도록 수정
This commit is contained in:
Yu Sung
2025-06-13 21:06:20 +09:00
parent a815bcfbf4
commit 69c7fb4c0b
2 changed files with 2 additions and 2 deletions

View File

@@ -137,7 +137,7 @@ struct CreatorCommunityAllItemView: View {
CreatorCommunityCommentView( CreatorCommunityCommentView(
commentCount: item.commentCount, commentCount: item.commentCount,
commentItem: item.firstComment, commentItem: item.firstComment,
isShowSecret: item.existOrdered, isShowSecret: item.price > 0 && item.existOrdered && item.creatorId != UserDefaults.int(forKey: .userId),
onClickWriteComment: onClickWriteComment onClickWriteComment: onClickWriteComment
) )
.onTapGesture { .onTapGesture {

View File

@@ -31,7 +31,7 @@ struct CreatorCommunityAllView: View {
}, },
onClickComment: { onClickComment: {
viewModel.postId = item.postId viewModel.postId = item.postId
viewModel.isShowSecret = item.existOrdered viewModel.isShowSecret = item.price > 0 && item.existOrdered && item.creatorId != UserDefaults.int(forKey: .userId)
viewModel.isShowCommentListView = true viewModel.isShowCommentListView = true
}, },
onClickWriteComment: { comment, isSecret in onClickWriteComment: { comment, isSecret in