fix: show correct asset in rewards table (#2294)

This commit is contained in:
Dexter Edwards 2022-12-01 09:38:03 +00:00 committed by GitHub
parent 972325b04a
commit cf2cfad746
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -108,7 +108,8 @@ export const RewardTable = ({ reward, delegations }: RewardTableProps) => {
<KeyValueTableRow> <KeyValueTableRow>
{t('reward')} {t('reward')}
<span> <span>
{formatNumber(toBigNum(reward.amount, decimals))} {t('VEGA')} {formatNumber(toBigNum(reward.amount, decimals))}{' '}
{reward.asset.symbol}
</span> </span>
</KeyValueTableRow> </KeyValueTableRow>
<KeyValueTableRow> <KeyValueTableRow>