diff --git a/src/components/metadata/MetadataDetails.tsx b/src/components/metadata/MetadataDetails.tsx index 9e7a64d1..5c34e1cd 100644 --- a/src/components/metadata/MetadataDetails.tsx +++ b/src/components/metadata/MetadataDetails.tsx @@ -98,7 +98,6 @@ const MetadataDetails: React.FC = ({ })); 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) {