diff --git a/ui/components/ui/token-input/token-input.component.js b/ui/components/ui/token-input/token-input.component.js index a3bc88bf5..3b8d2eefb 100644 --- a/ui/components/ui/token-input/token-input.component.js +++ b/ui/components/ui/token-input/token-input.component.js @@ -82,7 +82,7 @@ export default class TokenInput extends PureComponent { let newDecimalValue = decimalValue; - if (decimals && applyDecimals) { + if (decimals && decimalValue && applyDecimals) { newDecimalValue = new BigNumber(decimalValue, 10).toFixed(decimals); }