From 617d93fb486ad79b6a0e87ba54b7f94f623684c1 Mon Sep 17 00:00:00 2001 From: Paul Frazee Date: Tue, 14 Mar 2023 13:30:20 -0500 Subject: Add waitlist signup --- src/view/com/modals/Modal.tsx | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/view/com/modals/Modal.tsx') diff --git a/src/view/com/modals/Modal.tsx b/src/view/com/modals/Modal.tsx index d3a02e0da..931e3fbe4 100644 --- a/src/view/com/modals/Modal.tsx +++ b/src/view/com/modals/Modal.tsx @@ -13,6 +13,7 @@ import * as RepostModal from './Repost' import * as ReportAccountModal from './ReportAccount' import * as DeleteAccountModal from './DeleteAccount' import * as ChangeHandleModal from './ChangeHandle' +import * as WaitlistModal from './Waitlist' import {usePalette} from 'lib/hooks/usePalette' import {StyleSheet} from 'react-native' @@ -69,6 +70,9 @@ export const ModalsContainer = observer(function ModalsContainer() { } else if (activeModal?.name === 'change-handle') { snapPoints = ChangeHandleModal.snapPoints element = + } else if (activeModal?.name === 'waitlist') { + snapPoints = WaitlistModal.snapPoints + element = } else { return } -- cgit 1.4.1