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(
commentCount: item.commentCount,
commentItem: item.firstComment,
isShowSecret: item.existOrdered,
isShowSecret: item.price > 0 && item.existOrdered && item.creatorId != UserDefaults.int(forKey: .userId),
onClickWriteComment: onClickWriteComment
)
.onTapGesture {

View File

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