about summary refs log tree commit diff
path: root/src/components/PostControls/index.tsx
diff options
context:
space:
mode:
authorhailey <me@haileyok.com>2025-05-30 13:54:58 -0700
committerGitHub <noreply@github.com>2025-05-30 13:54:58 -0700
commitce7b9dc430da65151694baaf84af4b4a800866b5 (patch)
treef7c134b917981ade3cbffcbb1e1af8bb9c97833d /src/components/PostControls/index.tsx
parent2a453cd9cac811da0eb7c802489c6e4bcfe4bd78 (diff)
downloadvoidsky-ce7b9dc430da65151694baaf84af4b4a800866b5.tar.zst
add metrics (#8426)
Diffstat (limited to 'src/components/PostControls/index.tsx')
-rw-r--r--src/components/PostControls/index.tsx3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/components/PostControls/index.tsx b/src/components/PostControls/index.tsx
index f024928ee..f871cf356 100644
--- a/src/components/PostControls/index.tsx
+++ b/src/components/PostControls/index.tsx
@@ -69,14 +69,17 @@ let PostControls = ({
   const {_, i18n} = useLingui()
   const {gtMobile} = useBreakpoints()
   const {openComposer} = useOpenComposer()
+  const {feedDescriptor} = useFeedFeedbackContext()
   const [queueLike, queueUnlike] = usePostLikeMutationQueue(
     post,
     viaRepost,
+    feedDescriptor,
     logContext,
   )
   const [queueRepost, queueUnrepost] = usePostRepostMutationQueue(
     post,
     viaRepost,
+    feedDescriptor,
     logContext,
   )
   const requireAuth = useRequireAuth()