Skip to content

Commit

Permalink
fix daily rewards
Browse files Browse the repository at this point in the history
  • Loading branch information
kingsleydon committed Mar 4, 2024
1 parent d4d1138 commit 267b1ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/analytics/src/lib/Computation.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ const display = derived(
const length = summary.length
dailyRewards = `${format(
summary[length - 1].cumulativeRewards
.minus(summary[length - 3].cumulativeRewards)
.minus(summary[length - 2].cumulativeRewards)
.toDP(0)
.toNumber(),
)} PHA`
Expand Down

0 comments on commit 267b1ea

Please sign in to comment.