diff --git a/Shared/PostCollection/PostCollection.swift b/Shared/PostCollection/PostCollection.swift index 1836e82..5fd660c 100644 --- a/Shared/PostCollection/PostCollection.swift +++ b/Shared/PostCollection/PostCollection.swift @@ -1,11 +1,11 @@ import Foundation -struct PostCollection: Identifiable { +struct PostCollection: Identifiable, Hashable { let id = UUID() let title: String } let defaultDraftCollection = PostCollection(title: "Drafts") let testPostCollection1 = PostCollection(title: "Collection 1") let testPostCollection2 = PostCollection(title: "Collection 2") let testPostCollection3 = PostCollection(title: "Collection 3")