remove tostring

This commit is contained in:
Tommy Verrall
2021-12-21 19:18:04 +00:00
parent 65e42cfc52
commit 76a8e05478
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -32,7 +32,7 @@ export const Balance = () => {
variant="h6"
data-testid="balance-message"
>
{balance} {MAJOR_CURRENCY.toString()}
{balance} {MAJOR_CURRENCY}
</Typography>
</Typography>
}
@@ -2,7 +2,7 @@ import { Card, CardHeader, Link, Typography } from '@mui/material'
import { urls } from '../context/index'
import { config } from '../config'
export const { MAJOR_CURRENCY, MINOR_CURRENCY, VALIDATOR_ADDRESS, NETWORK } = config
export const { MAJOR_CURRENCY } = config
export const TokenTransfer = ({
@@ -25,7 +25,7 @@ export const TokenTransfer = ({
title={
<>
<Typography component="span" variant="h5">
Successfully transferred {amount} {MAJOR_CURRENCY.toString()} to
Successfully transferred {amount} {MAJOR_CURRENCY} to
</Typography>{' '}
<Link
target="_blank"