Conformed the FeedItemCell and the TopWordsCell table cells in the Feed framework to the TableCell protocol from the UI library.

This commit is contained in:
Javier Cicchelli 2024-03-21 00:34:01 +01:00
parent fa81de0a66
commit 8c0fed9007
2 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@
import ReviewsUIKit
import UIKit
final class FeedItemCell: UITableViewCell, CellIdentifiable {
final class FeedItemCell: UITableViewCell, TableCell {
// MARK: Constants
static let cellID = "FeedItemCell"

View File

@ -9,7 +9,7 @@
import ReviewsUIKit
import UIKit
final class TopWordsCell: UITableViewCell, CellIdentifiable {
final class TopWordsCell: UITableViewCell, TableCell {
// MARK: Constants
static let cellID = "TopWordsCell"