From 89334691b7d512b739b8ac0db7f9d548a2beabfb Mon Sep 17 00:00:00 2001 From: Adorian Doran Date: Tue, 10 Dec 2024 18:43:51 +0200 Subject: [PATCH] client: fix a typo --- src/public/app/utils/formatters.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/public/app/utils/formatters.js b/src/public/app/utils/formatters.js index be89f0649..2c996bb80 100644 --- a/src/public/app/utils/formatters.js +++ b/src/public/app/utils/formatters.js @@ -2,7 +2,7 @@ * Formats the given date and time to a string based on the current locale. * @param {string | Date | number} date * @param {"full" | "long" | "medium" | "short" | "none" | undefined} dateStyle - * @param {"full" | "long" | "medium" | "short" | "none" | undefined} tiemStyle + * @param {"full" | "long" | "medium" | "short" | "none" | undefined} timeStyle */ export function formatDateTime(date, dateStyle = "medium", timeStyle = "medium") { const locale = navigator.language;