mirror of
https://github.com/owncast/owncast.git
synced 2024-11-26 14:56:14 +03:00
Add key to ArticleItem list
This commit is contained in:
parent
2c86fa34fd
commit
a6fa16c1bf
1 changed files with 1 additions and 1 deletions
|
@ -57,7 +57,7 @@ export default function NewsFeed() {
|
||||||
<section className="news-feed form-module">
|
<section className="news-feed form-module">
|
||||||
<Title level={2}>News & Updates from Owncast</Title>
|
<Title level={2}>News & Updates from Owncast</Title>
|
||||||
{feed.map(item => (
|
{feed.map(item => (
|
||||||
<ArticleItem {...item} />
|
<ArticleItem {...item} key={item.url} />
|
||||||
))}
|
))}
|
||||||
</section>
|
</section>
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in a new issue