Skip to content

Commit

Permalink
added melvin and fixed key error
Browse files Browse the repository at this point in the history
  • Loading branch information
DonaldKLee committed Oct 17, 2023
1 parent cf0aee7 commit 0ac383f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion components/Footer.js
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ const profiles = [
emoji: '💡',
color: '#003366',
title: 'Development Director',
social: ""
social: "https://www.linkedin.com/in/melvinhteo/"
},
{
img: '/assets/profiles/Michelle_Fung.png',
Expand Down
6 changes: 2 additions & 4 deletions components/Team.js
Original file line number Diff line number Diff line change
Expand Up @@ -122,9 +122,8 @@ export default function Team({ profiles }) {
}
<div style={{ willChange: 'transform' }} id='anim-profiles'>
{profiles.map((profile, i) => (
<a href={profile.social}>
<a href={profile.social} key={i}>
<ProfileImage
key={i}
src={profile.img}
color={profile.color}
onClick={() => setSelectedProfile(profile)}
Expand All @@ -134,9 +133,8 @@ export default function Team({ profiles }) {
</a>
))}
{profiles.map((profile, i) => (
<a href={profile.social}>
<a href={profile.social} key={i}>
<ProfileImage
key={i}
src={profile.img}
color={profile.color}
onClick={() => setSelectedProfile(profile)}
Expand Down

0 comments on commit 0ac383f

Please sign in to comment.