From 0a5ba835c0c6c5335a12728a3f85b1ea2192d58c Mon Sep 17 00:00:00 2001 From: Samuel Newman Date: Wed, 10 Dec 2025 16:26:57 +0200 Subject: [PATCH] native only nux --- src/components/dialogs/nuxs/index.tsx | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/components/dialogs/nuxs/index.tsx b/src/components/dialogs/nuxs/index.tsx index e4e8d2db94..247b8f4266 100644 --- a/src/components/dialogs/nuxs/index.tsx +++ b/src/components/dialogs/nuxs/index.tsx @@ -10,6 +10,7 @@ import {type AppBskyActorDefs} from '@atproto/api' import {useGate} from '#/lib/statsig/statsig' import {logger} from '#/logger' +import {isNative} from '#/platform/detection' import {STALE} from '#/state/queries' import {Nux, useNuxs, useResetNuxs, useSaveNux} from '#/state/queries/nuxs' import { @@ -187,9 +188,9 @@ function Inner({ return ( {/*For example, activeNux === Nux.NeueTypography && */} - {activeNux === Nux.FindContactsAnnouncement && ( - - )} + {activeNux === Nux.FindContactsAnnouncement && + // Note: native only! + isNative && } ) }