parent
2590f5471b
commit
83d51a525b
|
@ -84,7 +84,10 @@ struct ExplorerView: View {
|
|||
ScrollView(.vertical, showsIndicators: false) {
|
||||
VStack(spacing: 26.7) {
|
||||
ForEach(0..<viewModel.explorerSections.count, id: \.self) { index in
|
||||
ExplorerSectionView(section: viewModel.explorerSections[index])
|
||||
let section = viewModel.explorerSections[index]
|
||||
if !section.creators.isEmpty {
|
||||
ExplorerSectionView(section: section)
|
||||
}
|
||||
}
|
||||
}
|
||||
.padding(.vertical, 40)
|
||||
|
|
Loading…
Reference in New Issue