An ATproto social media client -- with an independent Appview.

only show bookmarks nux to existing users (#8988)

authored by samuel.fm and committed by

GitHub 124cfb57 ac0c4ef2

+7
+7
src/components/dialogs/nuxs/index.tsx
··· 17 17 * NUXs 18 18 */ 19 19 import {isSnoozed, snooze, unsnooze} from '#/components/dialogs/nuxs/snoozing' 20 + import {isExistingUserAsOf} from './utils' 20 21 21 22 type Context = { 22 23 activeNux: Nux | undefined ··· 34 35 }[] = [ 35 36 { 36 37 id: Nux.BookmarksAnnouncement, 38 + enabled: ({currentProfile}) => { 39 + return isExistingUserAsOf( 40 + '2025-09-08T00:00:00.000Z', 41 + currentProfile.createdAt, 42 + ) 43 + }, 37 44 }, 38 45 ] 39 46