Skip to content

Commit

Permalink
fix lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
Berkeley Martinez authored and Berkeley Martinez committed Jul 23, 2015
1 parent e88b5a8 commit f3508db
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions common/app/components/Nav/Nav.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ const fCClogo = 'https://s3.amazonaws.com/freecodecamp/freecodecamp_logo.svg';
const navElements = navLinks.map((navItem, index) => {
return (
<NavItem
key={ index }
eventKey={ index + 1 }
href={ navItem.link }>
href={ navItem.link }
key={ index }>
{ navItem.content }
</NavItem>
);
Expand Down

0 comments on commit f3508db

Please sign in to comment.