diff --git a/SodaLive/Sources/Explorer/Profile/CreatorCommunity/All/CreatorCommunityAllItemView.swift b/SodaLive/Sources/Explorer/Profile/CreatorCommunity/All/CreatorCommunityAllItemView.swift index f4ee095..a8a2371 100644 --- a/SodaLive/Sources/Explorer/Profile/CreatorCommunity/All/CreatorCommunityAllItemView.swift +++ b/SodaLive/Sources/Explorer/Profile/CreatorCommunity/All/CreatorCommunityAllItemView.swift @@ -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 { diff --git a/SodaLive/Sources/Explorer/Profile/CreatorCommunity/All/CreatorCommunityAllView.swift b/SodaLive/Sources/Explorer/Profile/CreatorCommunity/All/CreatorCommunityAllView.swift index 6abda5b..1509280 100644 --- a/SodaLive/Sources/Explorer/Profile/CreatorCommunity/All/CreatorCommunityAllView.swift +++ b/SodaLive/Sources/Explorer/Profile/CreatorCommunity/All/CreatorCommunityAllView.swift @@ -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