diff --git a/iOS/MainFeed/Cell/MainFeedTableViewCell.swift b/iOS/MainFeed/Cell/MainFeedTableViewCell.swift index 04f4604ee..e8f8f6620 100644 --- a/iOS/MainFeed/Cell/MainFeedTableViewCell.swift +++ b/iOS/MainFeed/Cell/MainFeedTableViewCell.swift @@ -147,11 +147,14 @@ class MainFeedTableViewCell: VibrantTableViewCell { override func layoutSubviews() { super.layoutSubviews() - let layout = MainFeedTableViewCellLayout(cellWidth: bounds.size.width, insets: safeAreaInsets, label: titleView, - unreadCountView: unreadCountView, - showingEditingControl: isShowingEditControl, - indent: indentationLevel == 1, - shouldShowDisclosure: isDisclosureAvailable + let layout = MainFeedTableViewCellLayout( + cellWidth: bounds.size.width, + insets: safeAreaInsets, + label: titleView, + unreadCountView: unreadCountView, + showingEditingControl: isShowingEditControl, + indent: indentationLevel == 1, + shouldShowDisclosure: isDisclosureAvailable ) layoutWith(layout) }