mirror of
https://github.com/bitsocialnet/5chan.git
synced 2026-08-03 07:41:04 +02:00
fix: missing keys
This commit is contained in:
@@ -81,6 +81,7 @@ const Post = ({ content, postQuoteOnClick, postQuoteOnOver, postQuoteOnLeave, po
|
||||
|
||||
parts.push(
|
||||
<ForwardRefLink
|
||||
key={`quotelink-${i}-${lastIndex}`}
|
||||
className='quotelink'
|
||||
to={linkTo}
|
||||
target={linkTarget}
|
||||
|
||||
@@ -328,8 +328,8 @@ const Home = () => {
|
||||
<h2>Popular Threads</h2>
|
||||
</div>
|
||||
<BoardsContent>
|
||||
{sfwListCids.map((cid) => (
|
||||
<PopularThreads commentCid={cid} />
|
||||
{sfwListCids.map((cid, index) => (
|
||||
<PopularThreads key={index} commentCid={cid} />
|
||||
))}
|
||||
</BoardsContent>
|
||||
</BoardsBox>
|
||||
|
||||
Reference in New Issue
Block a user