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}
+
+
+
))}