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(
|
parts.push(
|
||||||
<ForwardRefLink
|
<ForwardRefLink
|
||||||
|
key={`quotelink-${i}-${lastIndex}`}
|
||||||
className='quotelink'
|
className='quotelink'
|
||||||
to={linkTo}
|
to={linkTo}
|
||||||
target={linkTarget}
|
target={linkTarget}
|
||||||
|
|||||||
@@ -328,8 +328,8 @@ const Home = () => {
|
|||||||
<h2>Popular Threads</h2>
|
<h2>Popular Threads</h2>
|
||||||
</div>
|
</div>
|
||||||
<BoardsContent>
|
<BoardsContent>
|
||||||
{sfwListCids.map((cid) => (
|
{sfwListCids.map((cid, index) => (
|
||||||
<PopularThreads commentCid={cid} />
|
<PopularThreads key={index} commentCid={cid} />
|
||||||
))}
|
))}
|
||||||
</BoardsContent>
|
</BoardsContent>
|
||||||
</BoardsBox>
|
</BoardsBox>
|
||||||
|
|||||||
Reference in New Issue
Block a user