From e21208cf1c423e7ca32c1a63ed9fdb6b54b415d5 Mon Sep 17 00:00:00 2001 From: Luke Vella Date: Fri, 12 Aug 2022 14:41:56 +0100 Subject: [PATCH] Fix 24 hour format --- 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 7b02456b5..219699c7d 100644 --- a/src/utils/dayjs.tsx +++ b/src/utils/dayjs.tsx @@ -122,7 +122,7 @@ export const DayjsProvider: React.VoidFunctionComponent<{ localeConfig.timeFormat !== timeFormat ? { ...dayjsLocale.formats, - LT: timeFormat === "12h" ? "h:mm A" : "H:mm", + LT: timeFormat === "12h" ? "h:mm A" : "HH:mm", } : dayjsLocale.formats, });