From 422b93495a1767d32b30363773352a9aca876341 Mon Sep 17 00:00:00 2001 From: Zack Spear Date: Wed, 27 Sep 2023 17:15:18 -0700 Subject: [PATCH] refactor(web): formatDate helper format to LLLL --- web/composables/time.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/composables/time.ts b/web/composables/time.ts index 9f1fec2e7..a9f82dcc0 100644 --- a/web/composables/time.ts +++ b/web/composables/time.ts @@ -39,7 +39,7 @@ const useTimeHelper = (t: any) => { return result.join(' '); }; - const formatDate = (date: number): string => dayjs(date).format('llll'); + const formatDate = (date: number): string => dayjs(date).format('LLLL'); /** * Original meat and potatos from: