Fix lint issues.

This commit is contained in:
Brent Simmons 2025-01-24 21:58:35 -08:00
parent 6923695b37
commit 9bf4fea962

View File

@ -147,11 +147,14 @@ class MainFeedTableViewCell: VibrantTableViewCell {
override func layoutSubviews() { override func layoutSubviews() {
super.layoutSubviews() super.layoutSubviews()
let layout = MainFeedTableViewCellLayout(cellWidth: bounds.size.width, insets: safeAreaInsets, label: titleView, let layout = MainFeedTableViewCellLayout(
unreadCountView: unreadCountView, cellWidth: bounds.size.width,
showingEditingControl: isShowingEditControl, insets: safeAreaInsets,
indent: indentationLevel == 1, label: titleView,
shouldShowDisclosure: isDisclosureAvailable unreadCountView: unreadCountView,
showingEditingControl: isShowingEditControl,
indent: indentationLevel == 1,
shouldShowDisclosure: isDisclosureAvailable
) )
layoutWith(layout) layoutWith(layout)
} }