feat(chat-character): 큐레이션 영역 제거

This commit is contained in:
Yu Sung
2025-11-14 01:31:52 +09:00
parent 0fd49a71f6
commit 2c74bb743b
4 changed files with 0 additions and 32 deletions

View File

@@ -63,23 +63,6 @@ struct CharacterView: View {
}
)
}
// ( )
if !viewModel.curations.isEmpty {
VStack(alignment: .leading, spacing: 48) {
ForEach(viewModel.curations.indices, id: \.self) { idx in
let section = viewModel.curations[idx]
CharacterSectionView(
title: section.title,
items: section.characters,
isShowRank: false,
onTap: { ch in
onSelectCharacter(ch.characterId)
}
)
}
}
}
}
.padding(.bottom, 24)
}