fix(main): 장르 크리에이터 섹션을 숨긴다

This commit is contained in:
Yu Sung
2026-07-12 06:29:05 +09:00
parent ec79e3ce8b
commit 47fe0e787d
2 changed files with 10 additions and 12 deletions

View File

@@ -50,18 +50,6 @@ struct MainHomeRecommendationView: View {
onTapCharacter: onTapCharacter
)
MainHomeGenreCreatorSection(
items: viewModel.recommendations?.genreCreators ?? [],
isFollowAllCompleted: viewModel.isFollowAllCompleted,
isFollowAllLoading: viewModel.isFollowAllLoading,
onTapCreator: onTapCreator,
onTapFollowAll: { creatorIds, completionKey in
onTapFollowAll {
viewModel.followAll(creatorIds: creatorIds, completionKey: completionKey)
}
}
)
MainHomeCheerCreatorSection(
items: viewModel.recommendations?.cheerCreators ?? [],
isFollowAllCompleted: viewModel.isFollowAllCompleted("cheer"),