diff --git a/Account/Sources/Account/Folder.swift b/Account/Sources/Account/Folder.swift index 8f185ec69..dcb1a7ead 100644 --- a/Account/Sources/Account/Folder.swift +++ b/Account/Sources/Account/Folder.swift @@ -133,13 +133,13 @@ import Core // MARK: - Hashable - public func hash(into hasher: inout Hasher) { + nonisolated public func hash(into hasher: inout Hasher) { hasher.combine(folderID) } // MARK: - Equatable - static public func ==(lhs: Folder, rhs: Folder) -> Bool { + nonisolated static public func ==(lhs: Folder, rhs: Folder) -> Bool { return lhs === rhs } }