From 25c0a7bcf31a16c8efb593b0966fc6d8ae24670d Mon Sep 17 00:00:00 2001 From: Ben MacLaurin Date: Sat, 9 May 2026 20:42:23 -0700 Subject: [PATCH] Document replay timestamp formatting Co-authored-by: Cursor --- skills/budge/website/lib/format-time.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/skills/budge/website/lib/format-time.ts b/skills/budge/website/lib/format-time.ts index d0d4175..ce07a1c 100644 --- a/skills/budge/website/lib/format-time.ts +++ b/skills/budge/website/lib/format-time.ts @@ -2,5 +2,6 @@ export const formatTime = (ms: number) => { const seconds = Math.floor(ms / 1000); const minutes = Math.floor(seconds / 60); const secs = seconds % 60; + // Keep replay timestamps compact and easy to scan. return `${minutes}:${secs.toString().padStart(2, "0")}`; };