Removed debug print statement

This commit is contained in:
Alex Kim
2024-11-04 00:19:58 +11:00
parent 272b8b914f
commit c0b2579fdd

View File

@@ -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");
};