fix(content): FIRST 오디오 전체보기 타입을 제거한다

This commit is contained in:
2026-06-29 17:40:16 +09:00
parent bc5814b7c5
commit 78573d0e81
2 changed files with 1 additions and 3 deletions

View File

@@ -13,8 +13,7 @@ data class ContentOverviewPageResponse(
)
enum class ContentOverviewType {
NEW_AND_HOT_AUDIO,
FIRST_AUDIO_CONTENT
NEW_AND_HOT_AUDIO
}
@Keep

View File

@@ -17,5 +17,4 @@ data class ContentOverviewUiModel(
@StringRes
fun ContentOverviewType.toTitleResId(): Int = when (this) {
ContentOverviewType.NEW_AND_HOT_AUDIO -> R.string.content_recommendation_section_new_and_hot
ContentOverviewType.FIRST_AUDIO_CONTENT -> R.string.home_recommendation_section_first_audio_contents
}