This should fix it all

This commit is contained in:
Gabriel Brown 2024-07-20 21:50:58 -05:00
parent 51cdd26545
commit ba25d3efc6

View File

@ -106,7 +106,7 @@ export const legacyGetHistory = async (page: number, perPage: number): Promise<P
const formattedResults: HistoryEntry[] = historyRows.map(row => ({ const formattedResults: HistoryEntry[] = historyRows.map(row => ({
name: row.name, name: row.name,
status: row.status, status: row.status,
time: convertToUTC(new Date(row.updatedAt)), time: new Date(row.updatedAt),
})); }));
return { return {