removed comment

This commit is contained in:
CrissZollo 2025-10-04 12:57:53 +02:00
parent 64c2129b1d
commit 6c8502d8fe

View file

@ -98,7 +98,6 @@ const MetadataDetails: React.FC<MetadataDetailsProps> = ({
}));
function formatRuntime(runtime: string): string {
// Match formats like "1h55min" or "2h 7min" and convert to "1H 55M" or "2H 7M"
// Try to match formats like "1h55min", "2h 7min", "125 min", etc.
const match = runtime.match(/(?:(\d+)\s*h\s*)?(\d+)\s*min/i);
if (match) {