Skip to content

Commit

Permalink
500 fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
nickkdoesstuff committed Jan 2, 2023
1 parent f5155ed commit d8e4ffc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pages/workspace/[id]/views.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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[] = []
Expand Down

0 comments on commit d8e4ffc

Please sign in to comment.