diff options
author | Eric Bailey <git@esb.lol> | 2024-09-26 11:47:13 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-26 11:47:13 -0500 |
commit | 5a142161cb90f65c2593b58c7471b6657a2cd0a2 (patch) | |
tree | fde255e4a023be739015a5d77f8f69b3a0c1707b /src/components/dialogs/nuxs/index.tsx | |
parent | 27e09e7adccc4d002359425492eb8773da73ebcb (diff) | |
download | voidsky-5a142161cb90f65c2593b58c7471b6657a2cd0a2.tar.zst |
Remove 10milly dialog, revert header logo changes (#5503)
Diffstat (limited to 'src/components/dialogs/nuxs/index.tsx')
-rw-r--r-- | src/components/dialogs/nuxs/index.tsx | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/src/components/dialogs/nuxs/index.tsx b/src/components/dialogs/nuxs/index.tsx index b93831ad3..c740e1e6a 100644 --- a/src/components/dialogs/nuxs/index.tsx +++ b/src/components/dialogs/nuxs/index.tsx @@ -16,10 +16,11 @@ import { import {useProfileQuery} from '#/state/queries/profile' import {SessionAccount, useSession} from '#/state/session' import {useOnboardingState} from '#/state/shell' +/* + * NUXs + */ import {NeueTypography} from '#/components/dialogs/nuxs/NeueTypography' import {isSnoozed, snooze, unsnooze} from '#/components/dialogs/nuxs/snoozing' -// NUXs -import {TenMillion} from '#/components/dialogs/nuxs/TenMillion' import {IS_DEV} from '#/env' type Context = { @@ -37,9 +38,6 @@ const queuedNuxs: { }) => boolean }[] = [ { - id: Nux.TenMillionDialog, - }, - { id: Nux.NeueTypography, enabled(props) { if (props.currentProfile.createdAt) { @@ -176,7 +174,6 @@ function Inner({ return ( <Context.Provider value={ctx}> - {activeNux === Nux.TenMillionDialog && <TenMillion />} {activeNux === Nux.NeueTypography && <NeueTypography />} </Context.Provider> ) |