diff --git a/Shared/PostCollection/CollectionPicker.swift b/Shared/PostCollection/CollectionPicker.swift index cbe9446..c91fda5 100644 --- a/Shared/PostCollection/CollectionPicker.swift +++ b/Shared/PostCollection/CollectionPicker.swift @@ -1,20 +1,21 @@ import SwiftUI struct CollectionPicker: View { @Binding var selectedCollection: PostCollection private let collections = [ + allPostsCollection, defaultDraftCollection, testPostCollection1, testPostCollection2, testPostCollection3 ] var body: some View { Picker("Collection", selection: $selectedCollection) { ForEach(collections) { collection in Text(collection.title).tag(collection) } } } }