From ef485f158479a205114b180de7d8f1eb37dcc294 Mon Sep 17 00:00:00 2001 From: Yiannis Christodoulou Date: Wed, 25 Jun 2025 03:55:56 +0300 Subject: [PATCH] fix: Date format --- .../video-editor/client/src/components/TimelineControls.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend-tools/video-editor/client/src/components/TimelineControls.tsx b/frontend-tools/video-editor/client/src/components/TimelineControls.tsx index e902126b..6213a677 100644 --- a/frontend-tools/video-editor/client/src/components/TimelineControls.tsx +++ b/frontend-tools/video-editor/client/src/components/TimelineControls.tsx @@ -189,7 +189,7 @@ const TimelineControls = ({ // Format the timestamp for display const date = new Date(response.timestamp); const formattedTime = date - .toLocaleString("en-US", { + .toLocaleString("en-GB", { year: "numeric", month: "2-digit", day: "2-digit", @@ -1184,7 +1184,7 @@ const TimelineControls = ({ if (savedData.updated_at) { const date = new Date(savedData.updated_at); const formattedTime = date - .toLocaleString("en-US", { + .toLocaleString("en-GB", { year: "numeric", month: "2-digit", day: "2-digit",