diff options
Diffstat (limited to 'src/view/com/auth/Onboarding.tsx')
-rw-r--r-- | src/view/com/auth/Onboarding.tsx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/view/com/auth/Onboarding.tsx b/src/view/com/auth/Onboarding.tsx index 6ea8cd79e..a36544a03 100644 --- a/src/view/com/auth/Onboarding.tsx +++ b/src/view/com/auth/Onboarding.tsx @@ -7,6 +7,7 @@ import {usePalette} from 'lib/hooks/usePalette' import {useStores} from 'state/index' import {Welcome} from './onboarding/Welcome' import {RecommendedFeeds} from './onboarding/RecommendedFeeds' +import {RecommendedFollows} from './onboarding/RecommendedFollows' export const Onboarding = observer(function OnboardingImpl() { const pal = usePalette('default') @@ -28,6 +29,9 @@ export const Onboarding = observer(function OnboardingImpl() { {store.onboarding.step === 'RecommendedFeeds' && ( <RecommendedFeeds next={next} /> )} + {store.onboarding.step === 'RecommendedFollows' && ( + <RecommendedFollows next={next} /> + )} </ErrorBoundary> </SafeAreaView> ) |