From c24e0f0f17019cffa231c6c6f9ad9fc14fbb48a1 Mon Sep 17 00:00:00 2001 From: Samuel Newman Date: Wed, 26 Mar 2025 15:40:44 +0200 Subject: [PATCH] rm recommendations (#8056) --- src/screens/Search/Explore.tsx | 5 ----- src/screens/Search/modules/ExploreRecommendations.tsx | 2 ++ 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/src/screens/Search/Explore.tsx b/src/screens/Search/Explore.tsx index 8be0d7c2b5..6d3ad26d31 100644 --- a/src/screens/Search/Explore.tsx +++ b/src/screens/Search/Explore.tsx @@ -356,11 +356,6 @@ export function Explore() { }) } - i.push({ - type: 'recommendations', - key: `recommendations`, - }) - i.push({ type: 'header', key: 'suggested-follows-header', diff --git a/src/screens/Search/modules/ExploreRecommendations.tsx b/src/screens/Search/modules/ExploreRecommendations.tsx index 628c6673c5..58c0d627b2 100644 --- a/src/screens/Search/modules/ExploreRecommendations.tsx +++ b/src/screens/Search/modules/ExploreRecommendations.tsx @@ -18,6 +18,8 @@ import { } from '#/components/TrendingTopics' import {Text} from '#/components/Typography' +// Note: This module is not currently used and may be removed in the future. + export function ExploreRecommendations() { const {enabled} = useTrendingConfig() return enabled ? : null