Skip to content

Commit

Permalink
fix: news list same key (#10996)
Browse files Browse the repository at this point in the history
  • Loading branch information
beyond009 committed Oct 18, 2023
1 parent 9993df7 commit d366265
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ export function NewsList({ list, isLoading, empty, dateString }: NewsListProps)
{list[key].map((v) => (
<div
className={classes.eventCard}
key={v.eventTitle}
key={v.event_url}
onClick={() => {
window.open(v.event_url)
}}>
Expand Down

0 comments on commit d366265

Please sign in to comment.