Index: ChapterX.Infrastructure/Repositories/CommentRepository.cs
===================================================================
--- ChapterX.Infrastructure/Repositories/CommentRepository.cs	(revision a6e33d1f34c0dbbfff38bfb2c73eea32abfe7cff)
+++ ChapterX.Infrastructure/Repositories/CommentRepository.cs	(revision 877c13c3dd0934c1d31da7988d0d2c2c5925ed55)
@@ -19,12 +19,9 @@
 
         public async Task<IEnumerable<Comment>> GetByChapterIdAsync(int chapterId, CancellationToken cancellationToken = default)
-            => await _dbSet.Where(c => c.StoryId == chapterId).ToListAsync(cancellationToken);
-
-        public async Task<IEnumerable<Comment>> GetByStoryIdAsync(int storyId, CancellationToken cancellationToken = default)
-            => await _dbSet
-                .Include(c => c.User)
-                .Where(c => c.StoryId == storyId)
-                .OrderByDescending(c => c.CreatedAt)
+        {
+            return await _dbSet
+                .Where(c => c.StoryId == chapterId)
                 .ToListAsync(cancellationToken);
+        }
     }
 }
