From eae08a676199ff348e63948d210d5e7ba534ad56 Mon Sep 17 00:00:00 2001 From: Jackson Harper Date: Fri, 15 Dec 2023 16:59:10 +0800 Subject: [PATCH] Dont need to call loadItems here since setting the filters will do that --- apple/OmnivoreKit/Sources/App/Views/Home/HomeFeedViewIOS.swift | 3 --- 1 file changed, 3 deletions(-) diff --git a/apple/OmnivoreKit/Sources/App/Views/Home/HomeFeedViewIOS.swift b/apple/OmnivoreKit/Sources/App/Views/Home/HomeFeedViewIOS.swift index 267c93a27..4a1a5db12 100644 --- a/apple/OmnivoreKit/Sources/App/Views/Home/HomeFeedViewIOS.swift +++ b/apple/OmnivoreKit/Sources/App/Views/Home/HomeFeedViewIOS.swift @@ -183,9 +183,6 @@ struct AnimatingCellHeight: AnimatableModifier { } } .task { - if viewModel.fetcher.items.isEmpty { - loadItems(isRefresh: false) - } await viewModel.loadFilters(dataService: dataService) } .environment(\.editMode, self.$isEditMode)