Skip to content

Commit

Permalink
fix: eslint error
Browse files Browse the repository at this point in the history
  • Loading branch information
dbrosio3 committed Jul 12, 2022
1 parent ce2d364 commit d2bae8d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Footer/LinksColumn.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export const LinksColumn: React.FC<{ sectionKey: string; links: Array<string> }>
<GridItem w="100%">
<UnorderedList color="common.white" flexGrow={1} listStyleType="none">
<Heading size="xs">{t(`footer.${sectionKey}.title`)}</Heading>
{links.map((link) => (
{links.map(link => (
<ListItem key={link}>
<a href="/">{t(`footer.${sectionKey}.${link}`)}</a>
</ListItem>
Expand Down

0 comments on commit d2bae8d

Please sign in to comment.