fix bigint ui

pull/1303/head
Brian Cao 2022-07-15 22:23:57 -07:00
parent 64f1841ae4
commit 08cd778177
1 changed files with 1 additions and 1 deletions

View File

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