Hoping this lets it build but it probably wont

This commit is contained in:
2024-07-20 21:17:38 -05:00
parent 7bf6f3d8c3
commit 1f80a449a5
3 changed files with 16 additions and 14 deletions

View File

@ -99,7 +99,7 @@ export const legacyGetHistory = async (page: number, perPage: number): Promise<P
const historyRows = historyResults[0] as unknown as { name: string, status: string, updatedAt: Date }[];
const countRow = countResults[0] as unknown as { total_count: number }[];
const totalCount = countRow[0]?.total_count || 0;
const totalCount = countRow[0]?.total_count ?? 0;
const totalPages = Math.ceil(totalCount / perPage);
// Format and map results