Skip to content

Commit

Permalink
Fixed a small dashboard display issue
Browse files Browse the repository at this point in the history
  • Loading branch information
mafux777 committed Mar 30, 2024
1 parent eed13ec commit 86aeadc
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 86aeadc

Please sign in to comment.