feat(home): 인기 커뮤니티 빈 스냅샷 marker를 저장한다

This commit is contained in:
2026-07-10 08:56:32 +09:00
parent ea331ce66f
commit 6cda73270f
2 changed files with 50 additions and 1 deletions

View File

@@ -84,7 +84,9 @@ class RecommendationSnapshotPersistenceAdapter(
}
private fun supportsEmptySnapshotMarker(sectionType: RecommendedSectionType): Boolean {
return sectionType == RecommendedSectionType.AI_CHARACTER || sectionType == RecommendedSectionType.CHEER_CREATOR
return sectionType == RecommendedSectionType.AI_CHARACTER ||
sectionType == RecommendedSectionType.CHEER_CREATOR ||
sectionType == RecommendedSectionType.POPULAR_COMMUNITY
}
companion object {