Skip to content

Commit

Permalink
feat update seeds chart
Browse files Browse the repository at this point in the history
  • Loading branch information
Space-Bean committed Oct 9, 2024
1 parent 6e36df2 commit fee04a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion projects/ui/src/hooks/beanstalk/useAvgSeedsPerBDV.ts
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,7 @@ function normalizeQueryResults(

const value = obj.grownStalkPerBDV.div(obj.depositedBDV);

const time = (Number(obj.createdAt) * 60 * 60) as Time;
const time = Number(obj.createdAt) as Time;

if (value.gt(0) && !timestamps.has(time)) {
map[season] = {
Expand Down

0 comments on commit fee04a6

Please sign in to comment.