From dc91c93a5eb02cb5a41d28d68fe392d0b07250bc Mon Sep 17 00:00:00 2001 From: Javier Cicchelli Date: Thu, 21 Mar 2024 00:18:34 +0100 Subject: [PATCH] Conformed the FeedItemCell table cell in the Feed framework to the CellIdentifiable protocol. --- Frameworks/Feed/Bundle/Sources/UI/Cells/FeedItemCell.swift | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Frameworks/Feed/Bundle/Sources/UI/Cells/FeedItemCell.swift b/Frameworks/Feed/Bundle/Sources/UI/Cells/FeedItemCell.swift index 1e9f4d7..5d67c30 100644 --- a/Frameworks/Feed/Bundle/Sources/UI/Cells/FeedItemCell.swift +++ b/Frameworks/Feed/Bundle/Sources/UI/Cells/FeedItemCell.swift @@ -6,11 +6,12 @@ // Copyright © 2024 Röck+Cöde. All rights reserved. // +import ReviewsUIKit import UIKit -final class FeedItemCell: UITableViewCell { - +final class FeedItemCell: UITableViewCell, CellIdentifiable { + // MARK: Constants - static let identifier = "FeedItemCell" + static let cellID = "FeedItemCell" }