diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-12-07 14:45:50 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-07 14:45:50 -0800 |
commit | 52a0cb8faccd0df8250b4b084005d2fd6d12a9ad (patch) | |
tree | 5e15893fc9296d8b3b9ba99ff689143a68f03e2c /src/view/com/modals/Modal.web.tsx | |
parent | 794015aef88b4488e9803e76908c00fdb53b0df2 (diff) | |
download | voidsky-52a0cb8faccd0df8250b4b084005d2fd6d12a9ad.tar.zst |
Add label appeal tool to posts and accounts (#2124)
* Add label appeal tool to posts and accounts * Fix translations
Diffstat (limited to 'src/view/com/modals/Modal.web.tsx')
-rw-r--r-- | src/view/com/modals/Modal.web.tsx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/view/com/modals/Modal.web.tsx b/src/view/com/modals/Modal.web.tsx index c39ba1f51..ce1e67fae 100644 --- a/src/view/com/modals/Modal.web.tsx +++ b/src/view/com/modals/Modal.web.tsx @@ -11,6 +11,7 @@ import * as EditProfileModal from './EditProfile' import * as ProfilePreviewModal from './ProfilePreview' import * as ServerInputModal from './ServerInput' import * as ReportModal from './report/Modal' +import * as AppealLabelModal from './AppealLabel' import * as CreateOrEditListModal from './CreateOrEditList' import * as UserAddRemoveLists from './UserAddRemoveLists' import * as ListAddUserModal from './ListAddRemoveUsers' @@ -81,6 +82,8 @@ function Modal({modal}: {modal: ModalIface}) { element = <ServerInputModal.Component {...modal} /> } else if (modal.name === 'report') { element = <ReportModal.Component {...modal} /> + } else if (modal.name === 'appeal-label') { + element = <AppealLabelModal.Component {...modal} /> } else if (modal.name === 'create-or-edit-list') { element = <CreateOrEditListModal.Component {...modal} /> } else if (modal.name === 'user-add-remove-lists') { |