feat(chat-character): 큐레이션 영역 제거
This commit is contained in:
@@ -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)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user