fix: remove temporary merged files

This commit is contained in:
Usman Baig
2026-01-16 22:26:05 +01:00
parent 19392ab385
commit 63921d5e04
2 changed files with 0 additions and 37 deletions

View File

@@ -1,14 +0,0 @@
/**
* Format duration in seconds to "1m 30s" or "30s"
*/
export function formatDuration(seconds: number): string {
if (!seconds) return '0s'
const m = Math.floor(seconds / 60)
const s = Math.floor(seconds % 60)
if (m > 0) {
return `${m}m ${s}s`
}
return `${s}s`
}