From a534f0f16833846eaac72226a38b088286375893 Mon Sep 17 00:00:00 2001 From: Josh Hawkins <32435876+hawkeye217@users.noreply.github.com> Date: Mon, 5 May 2025 13:22:42 -0500 Subject: [PATCH] remove comments about deprecated strftime_fmt --- web/src/utils/dateUtil.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/web/src/utils/dateUtil.ts b/web/src/utils/dateUtil.ts index d974521f8..8b1ef2ff4 100644 --- a/web/src/utils/dateUtil.ts +++ b/web/src/utils/dateUtil.ts @@ -28,9 +28,6 @@ export const getNowYesterdayInLong = (): number => { * The `timezone` option allows you to specify a specific timezone for the output, otherwise the user's browser timezone will be used. * The `use12hour` option allows you to display time in a 12-hour format if true, and 24-hour format if false. * The `dateStyle` and `timeStyle` options allow you to specify pre-defined formats for displaying the date and time. - * The `strftime_fmt` option allows you to specify a custom format using the strftime syntax. - * - * If both `strftime_fmt` and `dateStyle`/`timeStyle` are provided, `strftime_fmt` takes precedence. * * @param unixTimestamp The Unix timestamp to format * @param config An object containing the configuration options for date/time display