Skip to content

Commit

Permalink
Fixed a small dashboard display issue (#1658)
Browse files Browse the repository at this point in the history
Co-authored-by: tomjeatt <[email protected]>
  • Loading branch information
mafux777 and tomjeatt authored Jun 24, 2024
1 parent cb04e6b commit 18da743
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ const cumulativeVaultCollateralVolumesFetcher = async (
[ticker]: [
...(result[ticker] || []),
{
amount: newMonetaryAmount(volumeData.amount || 0, currency),
amount: newMonetaryAmount(volumeData?.amount || 0, currency),
tillTimestamp: cutoffTimestamps.find((cutoffTimestamp) => cutoffTimestamp.getTime().toString() === timestamp)
}
]
Expand Down

0 comments on commit 18da743

Please sign in to comment.