fix bigint ui

This commit is contained in:
Brian Cao 2022-07-15 22:23:57 -07:00
parent 64f1841ae4
commit 08cd778177

View File

@ -2,7 +2,7 @@ import { PrismaClient } from '@prisma/client';
import chalk from 'chalk';
BigInt.prototype.toJSON = function () {
return this.toString();
return Number(this);
};
const options = {