Skip to content

Commit a373384

Browse files
committedOct 27, 2024
address issue npm#1348
1 parent 1c2b94a commit a373384

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed
 

‎src/components/page-footer.js

+7-5
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,13 @@ const Contributors = ({contributors = [], latestCommit}) => {
3636
{contributors.length} {pluralize('contributor', contributors.length)}
3737
</Text>
3838
{contributors.map(login => (
39-
<Tooltip key={login} text={login}>
40-
<Link href={`https://github.com/${login}`} sx={{lineHeight: 'condensedUltra', mr: 2}}>
41-
<Avatar src={`https://github.com/${login}.png?size=40`} alt={login} />
42-
</Link>
43-
</Tooltip>
39+
<li key={login}>
40+
<Tooltip key={login} text={login}>
41+
<Link href={`https://github.com/${login}`} sx={{lineHeight: 'condensedUltra', mr: 2}}>
42+
<Avatar src={`https://github.com/${login}.png?size=40`} alt={login} />
43+
</Link>
44+
</Tooltip>
45+
</li>
4446
))}
4547
</Box>
4648
{latestCommit ? (

0 commit comments

Comments
 (0)