From 59bfdef2d36268b0e027e5833292cd627b841fb0 Mon Sep 17 00:00:00 2001 From: Luke Vella Date: Thu, 18 Aug 2022 10:25:05 +0100 Subject: [PATCH] Fix first day of week for pt locale --- src/utils/dayjs.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/dayjs.tsx b/src/utils/dayjs.tsx index bc3c56157..1563208c1 100644 --- a/src/utils/dayjs.tsx +++ b/src/utils/dayjs.tsx @@ -56,7 +56,7 @@ const dayjsLocales: Record< import: () => import("dayjs/locale/sv"), }, pt: { - weekStartsOn: "sunday", + weekStartsOn: "monday", timeFormat: "24h", import: () => import("dayjs/locale/pt"), },