This should fix it all
This commit is contained in:
parent
51cdd26545
commit
ba25d3efc6
@ -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 {
|
||||||
|
Loading…
Reference in New Issue
Block a user