Skip to content

Commit

Permalink
Add key arg for menu items
Browse files Browse the repository at this point in the history
  • Loading branch information
fdesjardins committed Feb 3, 2024
1 parent ec514d9 commit b531afa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/menu/Menu.js
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ const Menu = ({ index }) => {
</div>
</div>
<div>
{examples.map(({ title, slug, tags }) => {
{examples.map(({ key, title, slug, tags }) => {
return <MenuItem key={slug} title={title} to={slug} tags={tags} setFilter={setFilter} />
})}
</div>
Expand Down

0 comments on commit b531afa

Please sign in to comment.