From 9bf4fea9627f0ed322ed9897c6c75f6c065a3a09 Mon Sep 17 00:00:00 2001 From: Brent Simmons Date: Fri, 24 Jan 2025 21:58:35 -0800 Subject: [PATCH] Fix lint issues. --- iOS/MainFeed/Cell/MainFeedTableViewCell.swift | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) 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) }