From 64ff95e33b08beef0f13429463c227c56a634c6b Mon Sep 17 00:00:00 2001 From: Josh Hawkins <32435876+hawkeye217@users.noreply.github.com> Date: Tue, 22 Apr 2025 15:58:26 -0500 Subject: [PATCH] fix face library --- web/src/pages/FaceLibrary.tsx | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/web/src/pages/FaceLibrary.tsx b/web/src/pages/FaceLibrary.tsx index c3070542cc..2909a2ea9e 100644 --- a/web/src/pages/FaceLibrary.tsx +++ b/web/src/pages/FaceLibrary.tsx @@ -531,8 +531,12 @@ function TrainingGrid({ const formattedDate = useFormattedTimestamp( selectedEvent?.start_time ?? 0, config?.ui.time_format == "24hour" - ? t("time.formattedTimestampWithYear.24hour", { ns: "common" }) - : t("time.formattedTimestampWithYear.12hour", { ns: "common" }), + ? t("time.formattedTimestampMonthDayYearHourMinute.24hour", { + ns: "common", + }) + : t("time.formattedTimestampMonthDayYearHourMinute.12hour", { + ns: "common", + }), config?.ui.timezone, );