diff --git a/src/main/kotlin/kr/co/vividnext/sodalive/content/main/tab/content/AudioContentMainTabContentService.kt b/src/main/kotlin/kr/co/vividnext/sodalive/content/main/tab/content/AudioContentMainTabContentService.kt
index 6807e14..f505e2e 100644
--- a/src/main/kotlin/kr/co/vividnext/sodalive/content/main/tab/content/AudioContentMainTabContentService.kt
+++ b/src/main/kotlin/kr/co/vividnext/sodalive/content/main/tab/content/AudioContentMainTabContentService.kt
@@ -33,18 +33,14 @@ class AudioContentMainTabContentService(
         val themeOfContentList = audioContentThemeRepository.getActiveThemeOfContent(isAdult = isAdult)
 
         // 새로운 단편
-        val newContentList = if (themeOfContentList.isNotEmpty()) {
-            audioContentRepository.findByTheme(
-                memberId = member.id!!,
-                theme = themeOfContentList[0],
-                isAdult = member.auth != null,
-                contentType = ContentType.ALL,
-                offset = 0,
-                limit = 10
-            )
-        } else {
-            emptyList()
-        }
+        val newContentList = audioContentRepository.findByTheme(
+            memberId = member.id!!,
+            theme = "",
+            isAdult = member.auth != null,
+            contentType = ContentType.ALL,
+            offset = 0,
+            limit = 10
+        )
 
         // 일간 랭킹
         val currentDateTime = LocalDateTime.now()