Redirect youtube videos to youtuube

This commit is contained in:
Kamran Ahmed
2021-10-01 10:59:46 +02:00
parent f523b077a4
commit a2db93873b
4 changed files with 10 additions and 5 deletions

View File

@@ -95,8 +95,9 @@ export default function Home(props: HomeProps) {
<LinksList>
{videos.map(video => (
<LinksListItem
target={'_blank'}
key={video.id}
href={`/watch/${video.id}`}
href={video.youtubeLink!}
badgeText={video.isPro ? 'PRO' : ''}
hideSubtitleOnMobile
title={video.title}