diff options
author | Ansh <anshnanda10@gmail.com> | 2023-07-19 23:50:42 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-19 23:50:42 -0700 |
commit | 30ac9259c7b9dc367fca15cb6e7895feb0955bd4 (patch) | |
tree | 12324f472656aaaa5a8c1dabbc1c3eb896b8d7f9 /src/view/com/auth/create/Step1.tsx | |
parent | 3517d9fa28707a61febd75fd160edc870cc0ade7 (diff) | |
download | voidsky-30ac9259c7b9dc367fca15cb6e7895feb0955bd4.tar.zst |
[APP-775] Add Welcome screen after account creation (#1038)
* add comments to step 1-3 * add onboarding screen * add analytics for onboarding tracking * fix useEffect * change text * change icon size * put onboarding into bottom sheet modal instead of react navigation * wip * Simplify the type validation * Fix: only trigger onboarding modal when account creation succeeds * Add the 'session-ready' event which fires when the new session is stable * Use the 'session-ready' event to trigger the onboarding modal * update copy * update copy --------- Co-authored-by: Paul Frazee <pfrazee@gmail.com>
Diffstat (limited to 'src/view/com/auth/create/Step1.tsx')
-rw-r--r-- | src/view/com/auth/create/Step1.tsx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/view/com/auth/create/Step1.tsx b/src/view/com/auth/create/Step1.tsx index 57747f070..5038c8819 100644 --- a/src/view/com/auth/create/Step1.tsx +++ b/src/view/com/auth/create/Step1.tsx @@ -16,6 +16,10 @@ import {ErrorMessage} from 'view/com/util/error/ErrorMessage' import {LOCAL_DEV_SERVICE, STAGING_SERVICE, PROD_SERVICE} from 'state/index' import {LOGIN_INCLUDE_DEV_SERVERS} from 'lib/build-flags' +/** STEP 1: Your hosting provider + * @field Bluesky (default) + * @field Other (staging, local dev, your own PDS, etc.) + */ export const Step1 = observer(({model}: {model: CreateAccountModel}) => { const pal = usePalette('default') const [isDefaultSelected, setIsDefaultSelected] = React.useState(true) |