Add waitlist signup

This commit is contained in:
Paul Frazee 2023-03-14 13:30:20 -05:00
parent b838c786e0
commit 617d93fb48
6 changed files with 199 additions and 8 deletions

View file

@ -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 {}