chore(trading): rollback current traded volume change (#5527)

This commit is contained in:
m.ray 2023-12-21 12:38:09 +02:00 committed by GitHub
parent bd70b0c233
commit 4cffee29f8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -333,11 +333,7 @@ export const CurrentVolume = ({
return (
<div className="flex flex-col gap-3 pt-4" data-testid="current-volume">
<CardStat
value={
currentVolume.isZero()
? `<${formatNumberRounded(requiredForNextTier)}`
: formatNumberRounded(currentVolume)
}
value={formatNumberRounded(currentVolume)}
text={t('pastEpochs', 'Past {{count}} epochs', {
count: windowLength,
})}