From 78fe2e9251d9971c5671b502135cfe450fef0c3d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Even=20=C3=98sterud?= Date: Sun, 5 Oct 2025 19:45:47 +0200 Subject: [PATCH] Add weekday in front of date for calendar screen --- frontend/lib/utils/dateUtils.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/lib/utils/dateUtils.ts b/frontend/lib/utils/dateUtils.ts index 21de43e..e85ec3c 100644 --- a/frontend/lib/utils/dateUtils.ts +++ b/frontend/lib/utils/dateUtils.ts @@ -120,6 +120,7 @@ export function formatDuration(startDate: Date, endDate: Date): string { */ export function formatDateTime(date: Date): string { return date.toLocaleString('no-NO', { + weekday: 'short', day: 'numeric', month: 'short', year: 'numeric',