Merge branch 'ansh/app-812-add-custom-feed-discovery-to-onboarding' into main

This commit is contained in:
Paul Frazee
2023-08-30 16:18:21 -07:00
29 changed files with 1033 additions and 217 deletions
+2 -2
View File
@@ -109,10 +109,10 @@ export class CreateAccountModel {
this.setError('')
this.setIsProcessing(true)
// open the onboarding modal after the session is created
// open the onboarding screens after the session is created
const sessionReadySub = this.rootStore.onSessionReady(() => {
sessionReadySub.remove()
this.rootStore.shell.openModal({name: 'onboarding'})
this.rootStore.onboarding.start()
})
try {
-7
View File
@@ -136,10 +136,6 @@ export interface PostLanguagesSettingsModal {
name: 'post-languages-settings'
}
export interface OnboardingModal {
name: 'onboarding'
}
export type Modal =
// Account
| AddAppPasswordModal
@@ -171,9 +167,6 @@ export type Modal =
| WaitlistModal
| InviteCodesModal
// Onboarding
| OnboardingModal
// Generic
| ConfirmModal