Skip to content

Commit

Permalink
fix(charts): remove wrong changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Daryl-L committed Nov 3, 2023
1 parent 5b0b038 commit 68eb975
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/pages/StatisticsChart/monetary/TotalSupply.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -192,9 +192,9 @@ const toCSV = (statisticTotalSupplies: ChartItem.TotalSupply[]) =>
statisticTotalSupplies
? statisticTotalSupplies.map(data => [
data.createdAtUnixtimestamp,
shannonToCkbDecimal(data.circulatingSupply, 8).toString(),
shannonToCkbDecimal(data.lockedCapacity, 8).toString(),
shannonToCkbDecimal(data.burnt, 8).toString(),
shannonToCkbDecimal(data.circulatingSupply, 8),
shannonToCkbDecimal(data.lockedCapacity, 8),
shannonToCkbDecimal(data.burnt, 8),
])
: []

Expand Down

0 comments on commit 68eb975

Please sign in to comment.