From 8aa1e2e9695ee77b89530aedbedef011e1212c13 Mon Sep 17 00:00:00 2001 From: Jackson Harper Date: Thu, 14 Dec 2023 11:39:59 +0800 Subject: [PATCH] Ignore compact mode handling on iPhone --- apple/OmnivoreKit/Sources/App/Views/Home/HomeFeedViewIOS.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apple/OmnivoreKit/Sources/App/Views/Home/HomeFeedViewIOS.swift b/apple/OmnivoreKit/Sources/App/Views/Home/HomeFeedViewIOS.swift index 351d33508..5ca366b7b 100644 --- a/apple/OmnivoreKit/Sources/App/Views/Home/HomeFeedViewIOS.swift +++ b/apple/OmnivoreKit/Sources/App/Views/Home/HomeFeedViewIOS.swift @@ -245,7 +245,7 @@ struct AnimatingCellHeight: AnimatableModifier { var toolbarItems: some ToolbarContent { Group { ToolbarItem(placement: .barLeading) { - if horizontalSizeClass != .compact { + if UIDevice.isIPhone || horizontalSizeClass != .compact { VStack(alignment: .leading) { let showDate = isListScrolled && !listTitle.isEmpty if let title = viewModel.appliedFilter?.name {