Skip to content

Commit

Permalink
fix(ListCellContent): Rename registered ListViewCells in Catalog
Browse files Browse the repository at this point in the history
  • Loading branch information
alejandroruizponce committed Mar 7, 2023
1 parent 0e75541 commit a05cb94
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ private extension UICatalogCardsViewController {

tableView.dataSource = self
tableView.delegate = self
tableView.register(ListCellContentView.self, forCellReuseIdentifier: Constants.cellReusableIdentifier)
tableView.register(ListTableViewCell.self, forCellReuseIdentifier: Constants.cellReusableIdentifier)
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ class UICatalogSectionTitleViewController: UITableViewController {
tableView.tableFooterView = UIView(frame: CGRect.zero)
tableView.sectionFooterHeight = 0.0

tableView.register(ListCellContentView.self, forCellReuseIdentifier: Constants.listCellReusableIdentifier)
tableView.register(ListTableViewCell.self, forCellReuseIdentifier: Constants.listCellReusableIdentifier)
tableView.register(TitleView.self, forHeaderFooterViewReuseIdentifier: Constants.sectionTitleReusableIdentifier)
}

Expand Down

0 comments on commit a05cb94

Please sign in to comment.