Skip to content

Commit

Permalink
address issue npm#1348
Browse files Browse the repository at this point in the history
  • Loading branch information
kenshanta committed Nov 11, 2024
1 parent 0a15a7e commit 9ab0201
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions src/components/page-footer.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,13 @@ const Contributors = ({contributors = [], latestCommit}) => {
{contributors.length} {pluralize('contributor', contributors.length)}
</Text>
{contributors.map(login => (
<Tooltip key={login} text={login}>
<Link href={`https://github.com/${login}`} sx={{lineHeight: 'condensedUltra', mr: 2}}>
<Avatar src={`https://github.com/${login}.png?size=40`} alt={login} />
</Link>
</Tooltip>
<li key={login}>
<Tooltip key={login} text={login}>
<Link href={`https://github.com/${login}`} sx={{lineHeight: 'condensedUltra', mr: 2}}>
<Avatar src={`https://github.com/${login}.png?size=40`} alt={login} />
</Link>
</Tooltip>
</li>
))}
</Box>
{latestCommit ? (
Expand Down

0 comments on commit 9ab0201

Please sign in to comment.