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. + + )}