From c0b2579fddcd460008bd0901d43db774aa664536 Mon Sep 17 00:00:00 2001 From: Alex Kim Date: Mon, 4 Nov 2024 00:19:58 +1100 Subject: [PATCH] Removed debug print statement --- components/downloads/ActiveDownloads.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/components/downloads/ActiveDownloads.tsx b/components/downloads/ActiveDownloads.tsx index 36b48834..034f2f4b 100644 --- a/components/downloads/ActiveDownloads.tsx +++ b/components/downloads/ActiveDownloads.tsx @@ -95,7 +95,6 @@ const DownloadCard = ({ process, ...props }: DownloadCardProps) => { const length = p?.item?.RunTimeTicks || 0; const timeLeft = (length - length * (p.progress / 100)) / p.speed; - console.log("TIME LEFT:", timeLeft); return formatTimeString(timeLeft, "tick"); };