feat(dashboard): formatTime add seconds (#59)

This commit is contained in:
Marc Köhler
2024-10-09 10:07:36 +02:00
committed by GitHub
parent 211f59abdb
commit 5b9e749866

View File

@@ -43,6 +43,7 @@ export function formatTime(date: Date) {
return new Intl.DateTimeFormat(getLocale(), {
hour: 'numeric',
minute: 'numeric',
second: 'numeric',
}).format(date);
}