Fix key issue in trending topics (#7329)
This commit is contained in:
@@ -59,7 +59,6 @@ export function Inner() {
|
|||||||
) : !trending?.topics ? null : (
|
) : !trending?.topics ? null : (
|
||||||
<>
|
<>
|
||||||
{trending.topics.map(topic => (
|
{trending.topics.map(topic => (
|
||||||
<>
|
|
||||||
<TrendingTopicLink
|
<TrendingTopicLink
|
||||||
key={topic.link}
|
key={topic.link}
|
||||||
topic={topic}
|
topic={topic}
|
||||||
@@ -78,7 +77,6 @@ export function Inner() {
|
|||||||
</Text>
|
</Text>
|
||||||
</View>
|
</View>
|
||||||
</TrendingTopicLink>
|
</TrendingTopicLink>
|
||||||
</>
|
|
||||||
))}
|
))}
|
||||||
<Button
|
<Button
|
||||||
label={_(msg`Hide trending topics`)}
|
label={_(msg`Hide trending topics`)}
|
||||||
|
|||||||
Reference in New Issue
Block a user