From a608c5bf203b6888274b754ae752861e33827527 Mon Sep 17 00:00:00 2001 From: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com> Date: Thu, 18 Jun 2026 13:25:39 +0300 Subject: [PATCH] Fix date format on schedule --- src/components/schedule/day.astro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/schedule/day.astro b/src/components/schedule/day.astro index 3958831b1..69f8c5b76 100644 --- a/src/components/schedule/day.astro +++ b/src/components/schedule/day.astro @@ -350,7 +350,7 @@ posters.forEach((poster) => { const date = parseISO(dayName); -const dateText = format(date, "EEE eeee, MMMM d"); +const dateText = format(date, "eeee d MMMM");