Always use localized format

This commit is contained in:
Harry Oosterveen 2025-02-15 18:37:15 +01:00
parent 68e2fe5d6f
commit 95259ee944
3 changed files with 4 additions and 4 deletions

View file

@ -53,7 +53,7 @@ export function RealtimeLog({ data }: { data: RealtimeData }) {
},
];
const getTime = ({ createdAt, firstAt }) => formatTimezoneDate(firstAt || createdAt, 'h:mm:ss');
const getTime = ({ createdAt, firstAt }) => formatTimezoneDate(firstAt || createdAt, 'pp');
const getColor = ({ id, sessionId }) => stringToColor(sessionId || id);