Skip to content

Commit

Permalink
fix: missing key prop
Browse files Browse the repository at this point in the history
  • Loading branch information
nathan-vm committed Mar 12, 2024
1 parent f1f7a4f commit 802ea77
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/Home/Navbar/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ export const Navbar = () => {
<img id="logo" src="brand/png/main_logo.png" alt="Logo" />

<ul className='ul' id="central-links">
{menuItems.map(({ label, link }) =>
<li className='li'>
{menuItems.map(({ label, link },idx) =>
<li key={idx} className='li'>
<a href={link}>
{label}
</a>
Expand Down

0 comments on commit 802ea77

Please sign in to comment.