about summary refs log tree commit diff
path: root/src/state/modals/index.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/state/modals/index.tsx')
-rw-r--r--src/state/modals/index.tsx11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/state/modals/index.tsx b/src/state/modals/index.tsx
index 94d6d9ec5..bff27f84d 100644
--- a/src/state/modals/index.tsx
+++ b/src/state/modals/index.tsx
@@ -51,6 +51,16 @@ export type ReportModal = {
   | {did: string}
 )
 
+export type AppealLabelModal = {
+  name: 'appeal-label'
+} & (
+  | {
+      uri: string
+      cid: string
+    }
+  | {did: string}
+)
+
 export interface CreateOrEditListModal {
   name: 'create-or-edit-list'
   purpose?: string
@@ -183,6 +193,7 @@ export type Modal =
   // Moderation
   | ModerationDetailsModal
   | ReportModal
+  | AppealLabelModal
 
   // Lists
   | CreateOrEditListModal