diff --git a/pages/workspace/[id]/views.tsx b/pages/workspace/[id]/views.tsx index 5034ebe..f763d23 100644 --- a/pages/workspace/[id]/views.tsx +++ b/pages/workspace/[id]/views.tsx @@ -102,7 +102,7 @@ export const getServerSideProps = withPermissionCheckSsr(async ({ params }: GetS const ims: number[] = []; allActivity.filter((x: any) => BigInt(x.userId) == user.userid).forEach((s: any) => { - ims.push(s.idleTime) + ims.push(Number(s.idleTime)) }) const sh: any[] = []