From bf85818f8b45c0f833c16a5e88d3ce85967453ed Mon Sep 17 00:00:00 2001 From: ajnart Date: Sun, 22 May 2022 20:40:10 +0200 Subject: [PATCH] :bug: Fix #133 --- src/components/modules/date/DateModule.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/modules/date/DateModule.tsx b/src/components/modules/date/DateModule.tsx index ef7f34216..bb4a6bd12 100644 --- a/src/components/modules/date/DateModule.tsx +++ b/src/components/modules/date/DateModule.tsx @@ -27,7 +27,7 @@ export default function DateComponent(props: any) { config.settings[`${DateModule.title}.full`] === undefined ? true : config.settings[`${DateModule.title}.full`]; - const formatString = isFullTime ? 'HH:mm' : 'h:mm a'; + const formatString = isFullTime ? 'HH:mm' : 'h:mm A'; // Change date on minute change // Note: Using 10 000ms instead of 1000ms to chill a little :) useEffect(() => {