From ea04c2bd330dc5b46d6f9df0d7d4619bbd8f56d0 Mon Sep 17 00:00:00 2001 From: Paul Frazee Date: Wed, 5 Apr 2023 18:56:02 -0500 Subject: Add user invite codes (#393) * Add mobile UIs for invite codes * Update invite code UIs for web * Finish implementing invite code behaviors (including notifications of invited users) * Bump deps * Update web right nav to use real data; also fix lint --- src/view/com/modals/Modal.web.tsx | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/view/com/modals/Modal.web.tsx') diff --git a/src/view/com/modals/Modal.web.tsx b/src/view/com/modals/Modal.web.tsx index 1b233cf37..e6d54926b 100644 --- a/src/view/com/modals/Modal.web.tsx +++ b/src/view/com/modals/Modal.web.tsx @@ -16,6 +16,7 @@ import * as RepostModal from './Repost' import * as CropImageModal from './crop-image/CropImage.web' import * as ChangeHandleModal from './ChangeHandle' import * as WaitlistModal from './Waitlist' +import * as InviteCodesModal from './InviteCodes' export const ModalsContainer = observer(function ModalsContainer() { const store = useStores() @@ -72,6 +73,8 @@ function Modal({modal}: {modal: ModalIface}) { element = } else if (modal.name === 'waitlist') { element = + } else if (modal.name === 'invite-codes') { + element = } else { return null } -- cgit 1.4.1