Skip to content

Commit

Permalink
key added to a element
Browse files Browse the repository at this point in the history
  • Loading branch information
Alyssa DeMetro authored and Alyssa DeMetro committed Jun 1, 2022
1 parent 1800d64 commit 1ff9a94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/homeSections/about.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ export default function About() {
<h2 className="text-3xl font-extrabold text-white tracking-tight sm:text-4xl">Technical Skills</h2>
<p className="sm:text-base md:text-lg">
{skills.map((skill) => (
<a className="hover:italic cursor-pointer" target="__blank" href={skill.href}>{skill.name} - </a>
<a key={skill.name} className="hover:italic cursor-pointer" target="__blank" href={skill.href}>{skill.name} - </a>
))}
<span>and more...</span>
</p>
Expand Down

1 comment on commit 1ff9a94

@vercel
Copy link

@vercel vercel bot commented on 1ff9a94 Jun 1, 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.