diff --git a/canopeum_frontend/src/Utils/DateFormatter.ts b/canopeum_frontend/src/Utils/DateFormatter.ts index 0b0c6103b..f044b5f7d 100644 --- a/canopeum_frontend/src/Utils/DateFormatter.ts +++ b/canopeum_frontend/src/Utils/DateFormatter.ts @@ -7,5 +7,5 @@ export const formatDate = (dateIso: string): string => { const hours = String(date.getHours()).padStart(2, '0') const minutes = String(date.getMinutes()).padStart(2, '0') - return `${day}-${month}-${year} ${hours}:${minutes}` + return `${day}-${month}-${year} ${hours}:${minutes}`; }