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