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-05-30 09:44:49 +0300
committerGitHub <noreply@github.com>2024-05-30 09:44:49 +0300
commitd92036f2c576d33964b1141ac63888bdc2fb1ca4 (patch)
tree7dab0a8de593f575f628a3cbd2913afe7a387c9e /src/state/modals/index.tsx
parentc4abaa1abcde54f15133b2e2b546f0d54a3a1d07 (diff)
downloadvoidsky-d92036f2c576d33964b1141ac63888bdc2fb1ca4.tar.zst
Post controls update followup (#4276)
* rm legacy repost modal

* make repost button transparent

* reduce gap between post and ctrls

* remove old repost modal on web
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 cf82bcd07..f8a64dc2d 100644
--- a/src/state/modals/index.tsx
+++ b/src/state/modals/index.tsx
@@ -60,13 +60,6 @@ export interface DeleteAccountModal {
   name: 'delete-account'
 }
 
-export interface RepostModal {
-  name: 'repost'
-  onRepost: () => void
-  onQuote: () => void
-  isReposted: boolean
-}
-
 export interface SelfLabelModal {
   name: 'self-label'
   labels: string[]
@@ -154,7 +147,6 @@ export type Modal =
   | AltTextImageModal
   | CropImageModal
   | EditImageModal
-  | RepostModal
   | SelfLabelModal
   | ThreadgateModal