about summary refs log tree commit diff
path: root/src/state/models/ui/shell.ts
diff options
context:
space:
mode:
authorAnsh Nanda <anshnanda10@gmail.com>2023-08-29 12:16:26 -0700
committerAnsh Nanda <anshnanda10@gmail.com>2023-08-29 12:16:26 -0700
commitbf37913701836091b3e902694d72d190eeca5ec9 (patch)
tree29476c54b7ed4e42d97b0403062eff18e391e531 /src/state/models/ui/shell.ts
parent742440c22d9c7e671ef38f0a50dcd9397557cac6 (diff)
downloadvoidsky-bf37913701836091b3e902694d72d190eeca5ec9.tar.zst
fix onboarding on web
Diffstat (limited to 'src/state/models/ui/shell.ts')
-rw-r--r--src/state/models/ui/shell.ts7
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 {