diff --git a/SodaLive/Sources/Explorer/Profile/CreatorCommunity/All/CreatorCommunityAllItemView.swift b/SodaLive/Sources/Explorer/Profile/CreatorCommunity/All/CreatorCommunityAllItemView.swift index d5d25ed..cd68b96 100644 --- a/SodaLive/Sources/Explorer/Profile/CreatorCommunity/All/CreatorCommunityAllItemView.swift +++ b/SodaLive/Sources/Explorer/Profile/CreatorCommunity/All/CreatorCommunityAllItemView.swift @@ -97,14 +97,16 @@ struct CreatorCommunityAllItemView: View { } .frame(maxWidth: .infinity, alignment: .leading) - CreatorCommunityCommentView( - commentCount: item.commentCount, - commentItem: item.firstComment, - onClickWriteComment: onClickWriteComment - ) - .onTapGesture { - if item.commentCount > 0 { - onClickComment() + if item.isCommentAvailable { + CreatorCommunityCommentView( + commentCount: item.commentCount, + commentItem: item.firstComment, + onClickWriteComment: onClickWriteComment + ) + .onTapGesture { + if item.commentCount > 0 { + onClickComment() + } } } }