From 52a0cb8faccd0df8250b4b084005d2fd6d12a9ad Mon Sep 17 00:00:00 2001 From: Paul Frazee Date: Thu, 7 Dec 2023 14:45:50 -0800 Subject: Add label appeal tool to posts and accounts (#2124) * Add label appeal tool to posts and accounts * Fix translations --- 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 a3e6fb9e5..0384e301c 100644 --- a/src/view/com/modals/Modal.tsx +++ b/src/view/com/modals/Modal.tsx @@ -22,6 +22,7 @@ import * as ListAddUserModal from './ListAddRemoveUsers' import * as AltImageModal from './AltImage' import * as EditImageModal from './AltImage' import * as ReportModal from './report/Modal' +import * as AppealLabelModal from './AppealLabel' import * as DeleteAccountModal from './DeleteAccount' import * as ChangeHandleModal from './ChangeHandle' import * as WaitlistModal from './Waitlist' @@ -105,6 +106,9 @@ export function ModalsContainer() { } else if (activeModal?.name === 'report') { snapPoints = ReportModal.snapPoints element = + } else if (activeModal?.name === 'appeal-label') { + snapPoints = AppealLabelModal.snapPoints + element = } else if (activeModal?.name === 'create-or-edit-list') { snapPoints = CreateOrEditListModal.snapPoints element = -- cgit 1.4.1