Skip to content

Commit

Permalink
Merge pull request #647 from morellodev/remove-useless-key
Browse files Browse the repository at this point in the history
removed useless key on issues rendering
  • Loading branch information
leerob committed Mar 19, 2022
2 parents ba40951 + 4d312d7 commit 1203744
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export default function Home({ issues, stargazers_count, forks_count }: any) {
<div className={styles.issues}>
{issues.map((issue: any) => (
<Link key={issue.number} href={`/${issue.number}`}>
<a className={styles.issue} key={issue.id}>
<a className={styles.issue}>
<IssueIcon />
<div>
<div className={styles.issue_title}>{issue.title}</div>
Expand Down

1 comment on commit 1203744

@vercel
Copy link

@vercel vercel bot commented on 1203744 Mar 19, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.