diff --git a/app/components/Value/Value.js b/app/components/Value/Value.js index 143309f2..15121b53 100644 --- a/app/components/Value/Value.js +++ b/app/components/Value/Value.js @@ -10,7 +10,7 @@ const Value = ({ value, currency, currentTicker, fiatTicker }) => { if (currency === 'fiat') { price = currentTicker[fiatTicker].last } - return {convert('sats', currency, value, price)} + return {Number(convert('sats', currency, value, price))} } Value.propTypes = {