diff --git a/frontend-modern/src/App.tsx b/frontend-modern/src/App.tsx index 96ff05865..55d525de4 100644 --- a/frontend-modern/src/App.tsx +++ b/frontend-modern/src/App.tsx @@ -368,11 +368,10 @@ function App() { const formatLastUpdate = (timestamp: string) => { if (!timestamp) return ''; const date = new Date(timestamp); - return date.toLocaleTimeString('en-US', { + return date.toLocaleTimeString(undefined, { hour: 'numeric', minute: '2-digit', - second: '2-digit', - hour12: true + second: '2-digit' }); };