diff --git a/apple/OmnivoreKit/Sources/App/Views/Home/HomeFeedViewIOS.swift b/apple/OmnivoreKit/Sources/App/Views/Home/HomeFeedViewIOS.swift index 7a79983f4..6eb0891f0 100644 --- a/apple/OmnivoreKit/Sources/App/Views/Home/HomeFeedViewIOS.swift +++ b/apple/OmnivoreKit/Sources/App/Views/Home/HomeFeedViewIOS.swift @@ -563,10 +563,8 @@ struct AnimatingCellHeight: AnimatableModifier { }) .onPreferenceChange(ScrollOffsetPreferenceKey.self) { value in if value.y < 100, value.y > 0 { - if let date = item.savedAt { - if topItem != item { - setTopItem(item) - } + if item.savedAt != nil && topItem != item { + setTopItem(item) } } }