diff --git a/src/main/kotlin/kr/co/vividnext/sodalive/explorer/profile/creatorCommunity/comment/CreatorCommunityCommentRepository.kt b/src/main/kotlin/kr/co/vividnext/sodalive/explorer/profile/creatorCommunity/comment/CreatorCommunityCommentRepository.kt
index ee46c5a..2ee60bd 100644
--- a/src/main/kotlin/kr/co/vividnext/sodalive/explorer/profile/creatorCommunity/comment/CreatorCommunityCommentRepository.kt
+++ b/src/main/kotlin/kr/co/vividnext/sodalive/explorer/profile/creatorCommunity/comment/CreatorCommunityCommentRepository.kt
@@ -46,6 +46,7 @@ class CreatorCommunityCommentQueryRepositoryImpl(
             .where(
                 creatorCommunityComment.isActive.isTrue
                     .and(creatorCommunityComment.creatorCommunity.id.eq(id))
+                    .and(creatorCommunityComment.parent.isNull)
             )
             .offset(offset)
             .limit(limit)