Skip to content

Commit

Permalink
Remove unneeded console log
Browse files Browse the repository at this point in the history
  • Loading branch information
breezyfasano committed Sep 17, 2024
1 parent 9a128be commit fa3bf24
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions website/src/components/communitySpotlightList/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,12 +57,9 @@ function CommunitySpotlightList({ spotlightData }) {
{previousSpotlightMembers?.length ? (
<>
<h2>Previously on the Spotlight</h2>
{previousSpotlightMembers.map((member, i) => {
console.log(member.data)
return <CommunitySpotlightCard frontMatter={member.data} key={i} />
}

)}
{previousSpotlightMembers.map((member, i) => (
<CommunitySpotlightCard frontMatter={member.data} key={i} />
))}
</>
) : ''}
</>
Expand Down

0 comments on commit fa3bf24

Please sign in to comment.