From c527819fd4ac962d28f93ccde471fbd6aa03f8f4 Mon Sep 17 00:00:00 2001 From: Francis Cao Date: Tue, 27 Jan 2026 18:22:39 -0800 Subject: [PATCH] fix minute label formatting. Closes #3088 --- src/lib/charts.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/lib/charts.ts b/src/lib/charts.ts index 7d4208e2..1458cff8 100644 --- a/src/lib/charts.ts +++ b/src/lib/charts.ts @@ -11,7 +11,6 @@ export function renderDateLabels(unit: string, locale: string) { switch (unit) { case 'minute': - return formatDate(d, 'h:mm', locale); case 'hour': return formatDate(d, 'p', locale); case 'day':