From 7b95d374668422e73231a8516e85cc7e85691354 Mon Sep 17 00:00:00 2001 From: Scott Wilson Date: Mon, 21 Jul 2025 09:22:45 -0700 Subject: [PATCH] fix: correct end date usage --- .../organization/AuditLogsPage/components/LogsDateFilter.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/pages/organization/AuditLogsPage/components/LogsDateFilter.tsx b/frontend/src/pages/organization/AuditLogsPage/components/LogsDateFilter.tsx index ca31a17cd..71d418c9d 100644 --- a/frontend/src/pages/organization/AuditLogsPage/components/LogsDateFilter.tsx +++ b/frontend/src/pages/organization/AuditLogsPage/components/LogsDateFilter.tsx @@ -112,7 +112,7 @@ export const LogsDateFilter = ({ setFilter, filter, timezone, setTimezone }: Pro
{formatDateTime({ timezone, - timestamp: filter.startDate, + timestamp: filter.endDate, dateFormat: "yyyy/MM/dd HH:mm" })}