diff options
author | Ansh Nanda <anshnanda10@gmail.com> | 2023-08-29 12:16:26 -0700 |
---|---|---|
committer | Ansh Nanda <anshnanda10@gmail.com> | 2023-08-29 12:16:26 -0700 |
commit | bf37913701836091b3e902694d72d190eeca5ec9 (patch) | |
tree | 29476c54b7ed4e42d97b0403062eff18e391e531 /src/state/models/ui/shell.ts | |
parent | 742440c22d9c7e671ef38f0a50dcd9397557cac6 (diff) | |
download | voidsky-bf37913701836091b3e902694d72d190eeca5ec9.tar.zst |
fix onboarding on web
Diffstat (limited to 'src/state/models/ui/shell.ts')
-rw-r--r-- | src/state/models/ui/shell.ts | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/state/models/ui/shell.ts b/src/state/models/ui/shell.ts index a64047f9f..4c36dfdc6 100644 --- a/src/state/models/ui/shell.ts +++ b/src/state/models/ui/shell.ts @@ -140,6 +140,10 @@ export interface PreferencesHomeFeed { name: 'preferences-home-feed' } +export interface OnboardingModal { + name: 'onboarding' +} + export type Modal = // Account | AddAppPasswordModal @@ -175,6 +179,9 @@ export type Modal = // Generic | ConfirmModal + // Onboarding (only used on web) + | OnboardingModal + interface LightboxModel {} export class ProfileImageLightbox implements LightboxModel { |