diff options
author | Eric Bailey <git@esb.lol> | 2024-05-10 23:19:16 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-11 05:19:16 +0100 |
commit | 80ce6f980ed44df75dc40817ebfb33285998f9c9 (patch) | |
tree | 8d4804a9ed9f43f7b5d5b17db3ab24a32ab6f335 /src/screens/Onboarding/index.tsx | |
parent | 08979f37e723e90901d26578b7ac8a17e23f31cb (diff) | |
download | voidsky-80ce6f980ed44df75dc40817ebfb33285998f9c9.tar.zst |
[Reduced Onboarding] Add new step, new state to reducer (#3931)
* Add new step, new state to reducer * Don't set default feeds
Diffstat (limited to 'src/screens/Onboarding/index.tsx')
-rw-r--r-- | src/screens/Onboarding/index.tsx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/screens/Onboarding/index.tsx b/src/screens/Onboarding/index.tsx index 429649106..5af7a12dc 100644 --- a/src/screens/Onboarding/index.tsx +++ b/src/screens/Onboarding/index.tsx @@ -16,6 +16,7 @@ import {StepFinished} from '#/screens/Onboarding/StepFinished' import {StepFollowingFeed} from '#/screens/Onboarding/StepFollowingFeed' import {StepInterests} from '#/screens/Onboarding/StepInterests' import {StepModeration} from '#/screens/Onboarding/StepModeration' +import {StepProfile} from '#/screens/Onboarding/StepProfile' import {StepSuggestedAccounts} from '#/screens/Onboarding/StepSuggestedAccounts' import {StepTopicalFeeds} from '#/screens/Onboarding/StepTopicalFeeds' import {Portal} from '#/components/Portal' @@ -65,6 +66,7 @@ export function Onboarding() { [state, dispatch, interestsDisplayNames], )}> <Layout> + {state.activeStep === 'profile' && <StepProfile />} {state.activeStep === 'interests' && <StepInterests />} {state.activeStep === 'suggestedAccounts' && ( <StepSuggestedAccounts /> |