From c11a90124cbe67cc03a126c6a62d6546ffe7ffcf Mon Sep 17 00:00:00 2001 From: dan Date: Thu, 2 Jan 2025 17:27:15 +0000 Subject: [PATCH] Fix key issue in trending topics (#7329) --- src/components/interstitials/Trending.tsx | 38 +++++++++++------------ 1 file changed, 18 insertions(+), 20 deletions(-) diff --git a/src/components/interstitials/Trending.tsx b/src/components/interstitials/Trending.tsx index 1da361ef79..a217a7da2d 100644 --- a/src/components/interstitials/Trending.tsx +++ b/src/components/interstitials/Trending.tsx @@ -59,26 +59,24 @@ export function Inner() { ) : !trending?.topics ? null : ( <> {trending.topics.map(topic => ( - <> - { - logEvent('trendingTopic:click', {context: 'interstitial'}) - }}> - - - {topic.topic} - - - - + { + logEvent('trendingTopic:click', {context: 'interstitial'}) + }}> + + + {topic.topic} + + + ))}