diff options
Diffstat (limited to 'src/components/interstitials/Trending.tsx')
-rw-r--r-- | src/components/interstitials/Trending.tsx | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/components/interstitials/Trending.tsx b/src/components/interstitials/Trending.tsx index ff41797f4..153f08aaa 100644 --- a/src/components/interstitials/Trending.tsx +++ b/src/components/interstitials/Trending.tsx @@ -88,7 +88,12 @@ export function Inner() { ) : !trending?.topics ? null : ( <> {trending.topics.map(topic => ( - <TrendingTopicLink key={topic.link} topic={topic}> + <TrendingTopicLink + key={topic.link} + topic={topic} + onPress={() => { + logEvent('trendingTopic:click', {context: 'interstitial'}) + }}> {({hovered}) => ( <TrendingTopic topic={topic} |