diff --git a/components/links-list-item.tsx b/components/links-list-item.tsx index 0a210a42e..a2022e1f9 100644 --- a/components/links-list-item.tsx +++ b/components/links-list-item.tsx @@ -2,6 +2,7 @@ import React from 'react'; import { Badge, Flex, Link, Text } from '@chakra-ui/react'; type LinksListItemProps = { + href: string; title: string; subtitle: string; badgeText?: string; @@ -10,10 +11,11 @@ type LinksListItemProps = { }; export function LinksListItem(props: LinksListItemProps) { - const { title, subtitle, badgeText, icon, hideSubtitleOnMobile = false } = props; + const { title, subtitle, badgeText, icon, hideSubtitleOnMobile = false, href } = props; return ( (