We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1c2b94a commit a373384Copy full SHA for a373384
src/components/page-footer.js
@@ -36,11 +36,13 @@ const Contributors = ({contributors = [], latestCommit}) => {
36
{contributors.length} {pluralize('contributor', contributors.length)}
37
</Text>
38
{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>
+ <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>
44
+ </Tooltip>
45
+ </li>
46
))}
47
</Box>
48
{latestCommit ? (
0 commit comments