diff options
author | hailey <me@haileyok.com> | 2025-05-30 13:54:58 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-05-30 13:54:58 -0700 |
commit | ce7b9dc430da65151694baaf84af4b4a800866b5 (patch) | |
tree | f7c134b917981ade3cbffcbb1e1af8bb9c97833d /src/components/PostControls/index.tsx | |
parent | 2a453cd9cac811da0eb7c802489c6e4bcfe4bd78 (diff) | |
download | voidsky-ce7b9dc430da65151694baaf84af4b4a800866b5.tar.zst |
add metrics (#8426)
Diffstat (limited to 'src/components/PostControls/index.tsx')
-rw-r--r-- | src/components/PostControls/index.tsx | 3 |
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() |