diff --git a/components/links-list-item.tsx b/components/links-list-item.tsx
index a2022e1f9..06aefa826 100644
--- a/components/links-list-item.tsx
+++ b/components/links-list-item.tsx
@@ -6,15 +6,17 @@ type LinksListItemProps = {
title: string;
subtitle: string;
badgeText?: string;
+ target?: string;
icon?: React.ReactChild;
hideSubtitleOnMobile?: boolean;
};
export function LinksListItem(props: LinksListItemProps) {
- const { title, subtitle, badgeText, icon, hideSubtitleOnMobile = false, href } = props;
+ const { title, subtitle, badgeText, icon, hideSubtitleOnMobile = false, href, target } = props;
return (
{isNew && New}
diff --git a/pages/index.tsx b/pages/index.tsx
index 69ca9c461..cbac0608e 100644
--- a/pages/index.tsx
+++ b/pages/index.tsx
@@ -95,8 +95,9 @@ export default function Home(props: HomeProps) {
{videos.map(video => (
{videos.map((video, counter) => (