about summary refs log tree commit diff
path: root/src/state/modals/index.tsx
diff options
context:
space:
mode:
authorSamuel Newman <mozzius@protonmail.com>2024-10-16 18:52:14 +0300
committerGitHub <noreply@github.com>2024-10-16 08:52:14 -0700
commit6bc00f8d714fa1113d03f57ec06caccd4ffbb9dc (patch)
tree852790dfdfcc04584a56496e8219c08414120773 /src/state/modals/index.tsx
parentc3d0cc55d98fb32b25cd2164cfa1c399985e7c84 (diff)
downloadvoidsky-6bc00f8d714fa1113d03f57ec06caccd4ffbb9dc.tar.zst
Composer - Self label dialog ALF rewrite (#4354)
Diffstat (limited to 'src/state/modals/index.tsx')
-rw-r--r--src/state/modals/index.tsx8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/state/modals/index.tsx b/src/state/modals/index.tsx
index 03ab73f43..05e0c53f6 100644
--- a/src/state/modals/index.tsx
+++ b/src/state/modals/index.tsx
@@ -42,13 +42,6 @@ export interface DeleteAccountModal {
   name: 'delete-account'
 }
 
-export interface SelfLabelModal {
-  name: 'self-label'
-  labels: string[]
-  hasMedia: boolean
-  onChange: (labels: string[]) => void
-}
-
 export interface ChangeHandleModal {
   name: 'change-handle'
   onChanged: () => void
@@ -120,7 +113,6 @@ export type Modal =
 
   // Posts
   | CropImageModal
-  | SelfLabelModal
 
   // Bluesky access
   | WaitlistModal