From c07c5c753f2b25af32449c268d870eae6151c41f Mon Sep 17 00:00:00 2001 From: vineyardbovines Date: Sun, 23 Aug 2026 20:12:11 -0400 Subject: [PATCH] Hide trending settings hint on web --- src/components/TrendingTopics.tsx | 21 ++++++++++++--------- 1 file changed, 12 insertions(+), 9 deletions(-) diff --git a/src/components/TrendingTopics.tsx b/src/components/TrendingTopics.tsx index e0afef1ea7..475d7862bd 100644 --- a/src/components/TrendingTopics.tsx +++ b/src/components/TrendingTopics.tsx @@ -11,6 +11,7 @@ import {Link as InternalLink, type LinkProps} from '#/components/Link' import * as Prompt from '#/components/Prompt' import {Text} from '#/components/Typography' import {type Metrics, useAnalytics} from '#/analytics' +import {IS_WEB} from '#/env' import {type app} from '#/lexicons' export function TrendingTopicsPrompt({ @@ -42,15 +43,17 @@ export function TrendingTopicsPrompt({ color="secondary" onPress={onConfirm} /> - - You can update this later from your settings. - + {!IS_WEB && ( + + You can update this later from your settings. + + )}