diff --git a/src/app/admin/schedule/page.tsx b/src/app/admin/schedule/page.tsx index 081cf3d..4989b89 100644 --- a/src/app/admin/schedule/page.tsx +++ b/src/app/admin/schedule/page.tsx @@ -95,10 +95,8 @@ function timeToMinutes(timeStr: string): number { return t.h * 60 + t.m; } -const GRID_TOP_PAD = 8; // px — space so the first time label isn't clipped - function minutesToY(minutes: number): number { - return ((minutes - HOUR_START * 60) / 60) * HOUR_HEIGHT + GRID_TOP_PAD; + return ((minutes - HOUR_START * 60) / 60) * HOUR_HEIGHT; } function yToMinutes(y: number): number { @@ -912,7 +910,7 @@ function CalendarGrid({