diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-01-17 10:11:30 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-17 10:11:30 -0600 |
commit | bf1092ad86ef8e5829db29a17f33380dabab8535 (patch) | |
tree | 5cf0d18a88d7162fcfe258aff89d3d868268d0d9 /src/view/com/modals/Modal.tsx | |
parent | 5abcc8e336b3af11a6c98d0d9e662415856478a0 (diff) | |
download | voidsky-bf1092ad86ef8e5829db29a17f33380dabab8535.tar.zst |
Remove scenes (#36)
* Remove scenes from the main menu * Remove scenes from the profile view * Remove 'scenes explainer' from onboarding flow * Remove scene-related modals * Remove member/membership code * Remove all scenes-related items from notifications * Remove scene-related code from posts feed * Remove scene-related API helpers * Update tests
Diffstat (limited to 'src/view/com/modals/Modal.tsx')
-rw-r--r-- | src/view/com/modals/Modal.tsx | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/src/view/com/modals/Modal.tsx b/src/view/com/modals/Modal.tsx index 43271c964..e0e18d54a 100644 --- a/src/view/com/modals/Modal.tsx +++ b/src/view/com/modals/Modal.tsx @@ -9,8 +9,6 @@ import * as models from '../../../state/models/shell-ui' import * as ConfirmModal from './Confirm' import * as EditProfileModal from './EditProfile' -import * as CreateSceneModal from './CreateScene' -import * as InviteToSceneModal from './InviteToScene' import * as ServerInputModal from './ServerInput' import * as ReportPostModal from './ReportPost' import * as ReportAccountModal from './ReportAccount' @@ -55,16 +53,6 @@ export const Modal = observer(function Modal() { {...(store.shell.activeModal as models.EditProfileModal)} /> ) - } else if (store.shell.activeModal?.name === 'create-scene') { - snapPoints = CreateSceneModal.snapPoints - element = <CreateSceneModal.Component /> - } else if (store.shell.activeModal?.name === 'invite-to-scene') { - snapPoints = InviteToSceneModal.snapPoints - element = ( - <InviteToSceneModal.Component - {...(store.shell.activeModal as models.InviteToSceneModal)} - /> - ) } else if (store.shell.activeModal?.name === 'server-input') { snapPoints = ServerInputModal.snapPoints element = ( |