data parsing시 이름이 일치하지 않아 에러나던 버그 수정
This commit is contained in:
@@ -24,8 +24,8 @@ struct ContentMainCurationItemView: View {
|
||||
|
||||
ScrollView(.horizontal, showsIndicators: false) {
|
||||
LazyHStack(alignment: .top, spacing: 13.3) {
|
||||
ForEach(0..<item.audioContents.count, id: \.self) {
|
||||
let audioContent = item.audioContents[$0]
|
||||
ForEach(0..<item.contents.count, id: \.self) {
|
||||
let audioContent = item.contents[$0]
|
||||
ContentMainItemView(item: audioContent)
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user