Remove bigint.

This commit is contained in:
Brian Cao 2023-07-11 18:52:52 -07:00
parent 4d41527f94
commit a9617cb704
2 changed files with 3 additions and 3 deletions

View File

@ -104,7 +104,7 @@ export interface WebsiteEventDataFields {
field: string; field: string;
type: number; type: number;
value?: string; value?: string;
total: bigint; total: number;
} }
export interface WebsitePageviews { export interface WebsitePageviews {

View File

@ -32,10 +32,10 @@ export default async (
const data = results.reduce( const data = results.reduce(
(obj, row) => { (obj, row) => {
obj.records += row.total; obj.records += Number(row.total);
return obj; return obj;
}, },
{ fields: results.length, records: BigInt(0) }, { fields: results.length, records: 0 },
); );
return ok(res, data); return ok(res, data);