fix: 메인 홈 - 인기 크리에이터

- 팔로워 수 추가
This commit is contained in:
2025-07-11 20:00:39 +09:00
parent 704ad12ccf
commit a49b82a7c2
3 changed files with 11 additions and 4 deletions

View File

@@ -123,7 +123,7 @@ data class Member(
}
}
fun toExplorerSectionCreator(imageHost: String): GetExplorerSectionCreatorResponse {
fun toExplorerSectionCreator(imageHost: String, followerCount: Int = 0): GetExplorerSectionCreatorResponse {
return GetExplorerSectionCreatorResponse(
id = id!!,
nickname = nickname,
@@ -135,7 +135,8 @@ data class Member(
"$imageHost/$profileImage"
} else {
"$imageHost/profile/default-profile.png"
}
},
followerCount = followerCount
)
}
}