diff --git a/apple/OmnivoreKit/Sources/App/Views/Home/Components/FeedCardNavigationLink.swift b/apple/OmnivoreKit/Sources/App/Views/Home/Components/FeedCardNavigationLink.swift index 3776647b7..075a09464 100644 --- a/apple/OmnivoreKit/Sources/App/Views/Home/Components/FeedCardNavigationLink.swift +++ b/apple/OmnivoreKit/Sources/App/Views/Home/Components/FeedCardNavigationLink.swift @@ -13,7 +13,9 @@ struct FeedCardNavigationLink: View { var body: some View { let destination = LinkItemDetailView(viewModel: LinkItemDetailViewModel(item: item, homeFeedViewModel: viewModel)) #if os(iOS) - let modifiedDestination = destination.navigationBarHidden(true) + let modifiedDestination = destination + .navigationBarHidden(true) + .navigationTitle("") #else let modifiedDestination = destination #endif @@ -51,7 +53,9 @@ struct GridCardNavigationLink: View { var body: some View { let destination = LinkItemDetailView(viewModel: LinkItemDetailViewModel(item: item, homeFeedViewModel: viewModel)) #if os(iOS) - let modifiedDestination = destination.navigationBarHidden(true) + let modifiedDestination = destination + .navigationBarHidden(true) + .navigationTitle("") #else let modifiedDestination = destination #endif