Nux after onboarding (#5357)

* Don't show nux dialogs until post-onboarding

* Don't show if over 10M
zio/dev^2
Eric Bailey 2024-09-15 14:58:10 -05:00 committed by GitHub
parent d6c11a7231
commit 61deab7051
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 2 deletions

View File

@ -115,7 +115,7 @@ export function TenMillion() {
const data = await res.json()
if (data.number) {
if (data.number && data.number <= 10_000_000) {
setUserNumber(data.number)
} else {
// should be rare

View File

@ -9,6 +9,7 @@ import {
useUpsertNuxMutation,
} from '#/state/queries/nuxs'
import {useSession} from '#/state/session'
import {useOnboardingState} from '#/state/shell'
import {isSnoozed, snooze, unsnooze} from '#/components/dialogs/nuxs/snoozing'
import {TenMillion} from '#/components/dialogs/nuxs/TenMillion'
import {IS_DEV} from '#/env'
@ -57,7 +58,8 @@ export function useNuxDialogContext() {
export function NuxDialogs() {
const {hasSession} = useSession()
return hasSession ? <Inner /> : null
const onboardingState = useOnboardingState()
return hasSession && !onboardingState.isActive ? <Inner /> : null
}
function Inner() {