diff --git a/app/(auth)/(tabs)/(home)/downloads/index.tsx b/app/(auth)/(tabs)/(home)/downloads/index.tsx index 1fbf4319..03f3cc1a 100644 --- a/app/(auth)/(tabs)/(home)/downloads/index.tsx +++ b/app/(auth)/(tabs)/(home)/downloads/index.tsx @@ -102,7 +102,10 @@ export default function page() { useEffect(() => { navigation.setOptions({ headerRight: () => ( - + f.item) || []} /> ), @@ -169,7 +172,7 @@ export default function page() { - + {t("home.downloads.queue")} @@ -177,7 +180,7 @@ export default function page() { {t("home.downloads.queue_hint")} - + {queue.map((q, index) => ( diff --git a/components/downloads/ActiveDownloads.tsx b/components/downloads/ActiveDownloads.tsx index 97b197c4..3dba2418 100644 --- a/components/downloads/ActiveDownloads.tsx +++ b/components/downloads/ActiveDownloads.tsx @@ -26,7 +26,7 @@ export default function ActiveDownloads({ ...props }: ActiveDownloadsProps) { {t("home.downloads.active_downloads")} - + {processes?.map((p: JobStatus) => ( ))} diff --git a/components/downloads/DownloadCard.tsx b/components/downloads/DownloadCard.tsx index 83b346fa..12a9b889 100644 --- a/components/downloads/DownloadCard.tsx +++ b/components/downloads/DownloadCard.tsx @@ -96,7 +96,7 @@ export const DownloadCard = ({ process, ...props }: DownloadCardProps) => { )} {/* Action buttons in bottom right corner */} - + handleDelete(process.id)} className='p-2 bg-neutral-800 rounded-full' @@ -127,7 +127,7 @@ export const DownloadCard = ({ process, ...props }: DownloadCardProps) => { {process.item.ProductionYear} - + {sanitizedProgress === 0 ? ( ) : ( @@ -145,7 +145,7 @@ export const DownloadCard = ({ process, ...props }: DownloadCardProps) => { )} - + {process.status} diff --git a/translations/en.json b/translations/en.json index 1bbc2cc1..ed6d3277 100644 --- a/translations/en.json +++ b/translations/en.json @@ -269,7 +269,7 @@ "movies": "Movies", "queue": "Queue", "other_media": "Other media", - "queue_hint": "Queue and downloads will be lost on app restart", + "queue_hint": "Queue will be lost on app restart", "no_items_in_queue": "No Items in Queue", "no_downloaded_items": "No Downloaded Items", "delete_all_movies_button": "Delete All Movies",