diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-03-14 13:30:20 -0500 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2023-03-14 13:30:20 -0500 |
commit | 617d93fb486ad79b6a0e87ba54b7f94f623684c1 (patch) | |
tree | bac7b04d94bb65fb4bc0f597add34a5926a184de /src/state/models/ui/shell.ts | |
parent | b838c786e02d676209c2e41c2d0113c932d8456d (diff) | |
download | voidsky-617d93fb486ad79b6a0e87ba54b7f94f623684c1.tar.zst |
Add waitlist signup
Diffstat (limited to 'src/state/models/ui/shell.ts')
-rw-r--r-- | src/state/models/ui/shell.ts | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/state/models/ui/shell.ts b/src/state/models/ui/shell.ts index db6ae2eac..d6fefb850 100644 --- a/src/state/models/ui/shell.ts +++ b/src/state/models/ui/shell.ts @@ -56,6 +56,10 @@ export interface ChangeHandleModal { onChanged: () => void } +export interface WaitlistModal { + name: 'waitlist' +} + export type Modal = | ConfirmModal | EditProfileModal @@ -66,6 +70,7 @@ export type Modal = | DeleteAccountModal | RepostModal | ChangeHandleModal + | WaitlistModal interface LightboxModel {} |