refactor(web): formatDate helper format to LLLL

This commit is contained in:
Zack Spear
2023-09-27 17:15:18 -07:00
committed by Zack Spear
parent 7246ee34bd
commit 422b93495a

View File

@@ -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: