From 4eff7d8ea54237e6cb3bb11fb8c8d2efc5c94012 Mon Sep 17 00:00:00 2001 From: Mahyar Mirrashed Date: Mon, 10 Mar 2025 11:16:19 -0700 Subject: [PATCH] fix(audit): change dd-mm-yy to mm-dd-yy --- .../organization/AuditLogsPage/components/LogsTableRow.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/pages/organization/AuditLogsPage/components/LogsTableRow.tsx b/frontend/src/pages/organization/AuditLogsPage/components/LogsTableRow.tsx index 5c3337938..cc67e5319 100644 --- a/frontend/src/pages/organization/AuditLogsPage/components/LogsTableRow.tsx +++ b/frontend/src/pages/organization/AuditLogsPage/components/LogsTableRow.tsx @@ -83,7 +83,7 @@ export const LogsTableRow = ({ auditLog, isOrgAuditLogs, showActorColumn }: Prop hours %= 12; hours = hours || 12; // the hour '0' should be '12' - const formattedDate = `${day}-${month}-${year} at ${hours}:${minutes} ${period}`; + const formattedDate = `${month}-${day}-${year} at ${hours}:${minutes} ${period}`; return formattedDate; };