data parsing시 이름이 일치하지 않아 에러나던 버그 수정

This commit is contained in:
Yu Sung
2023-08-20 00:08:15 +09:00
parent 78f80cebd5
commit d75367c78b
3 changed files with 4 additions and 3 deletions

View File

@@ -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)
}
}