Skip to content

Commit

Permalink
fix again
Browse files Browse the repository at this point in the history
  • Loading branch information
kiwicopple authored Jan 20, 2023
1 parent 96f50e7 commit 4469724
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion components/Issues.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ FORMAT JSON`,
if (!data) return <div>Loading...</div>

const chartData = data.data
const max = parseInt(toString(findMax(chartData, 'tally')))
const max = parseInt(findMax(chartData, 'tally').toString())

return (
<Card>
Expand Down
2 changes: 1 addition & 1 deletion components/PullRequests.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ FORMAT JSON`,
if (!data) return <div>Loading...</div>

const chartData = data.data
const max = parseInt(toString(findMax(chartData, 'tally')))
const max = parseInt(findMax(chartData, 'tally').toString())

return (
<Card>
Expand Down

1 comment on commit 4469724

@vercel
Copy link

@vercel vercel bot commented on 4469724 Jan 20, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.