diff --git a/src/components/player/atoms/settings/Downloads.tsx b/src/components/player/atoms/settings/Downloads.tsx index 9b3fdc6d..21868be6 100644 --- a/src/components/player/atoms/settings/Downloads.tsx +++ b/src/components/player/atoms/settings/Downloads.tsx @@ -75,7 +75,7 @@ export function DownloadView({ id }: { id: string }) { if (!downloadUrl) return; const title = meta?.title ? meta.title : "Video"; const poster = meta?.poster; - let subtitleText = null; + let subtitleText: string | undefined; if (selectedCaption?.srtData) { subtitleText = selectedCaption.srtData;