Skip to content

Commit f6d4137

Browse files
committed
fix CI with linting
1 parent f6fa9ff commit f6d4137

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/components/page-footer.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,12 @@ const Contributors = ({contributors = [], latestCommit}) => {
3737
</Text>
3838
{contributors.map(login => (
3939
<li key={login}>
40-
<Tooltip key={login} text={login}>
40+
<Tooltip key={login} text={login}>
4141
<Link href={`https://github.com/${login}`} sx={{lineHeight: 'condensedUltra', mr: 2}}>
42-
<Avatar src={`https://github.com/${login}.png?size=40`} alt={login} />
42+
<Avatar src={`https://github.com/${login}.png?size=40`} alt={login} />
4343
</Link>
44-
</Tooltip>
45-
</li>
44+
</Tooltip>
45+
</li>
4646
))}
4747
</Box>
4848
{latestCommit ? (

0 commit comments

Comments
 (0)