aboutsummaryrefslogtreecommitdiffstats
path: root/ui
diff options
context:
space:
mode:
authortrejgun <trejgun@gmail.com>2018-06-23 07:41:11 +0800
committertrejgun <trejgun@gmail.com>2018-06-23 07:41:11 +0800
commite05eeb56da51e89e94267bcfe0b4b80ace55d09e (patch)
tree95592cea53d1cea2a91d1bbb63e141e1518c9ba4 /ui
parent778aec8c754a2bbd2b9f35aabfb57a99a9608e54 (diff)
downloadtangerine-wallet-browser-e05eeb56da51e89e94267bcfe0b4b80ace55d09e.tar
tangerine-wallet-browser-e05eeb56da51e89e94267bcfe0b4b80ace55d09e.tar.gz
tangerine-wallet-browser-e05eeb56da51e89e94267bcfe0b4b80ace55d09e.tar.bz2
tangerine-wallet-browser-e05eeb56da51e89e94267bcfe0b4b80ace55d09e.tar.lz
tangerine-wallet-browser-e05eeb56da51e89e94267bcfe0b4b80ace55d09e.tar.xz
tangerine-wallet-browser-e05eeb56da51e89e94267bcfe0b4b80ace55d09e.tar.zst
tangerine-wallet-browser-e05eeb56da51e89e94267bcfe0b4b80ace55d09e.zip
fix default import
Diffstat (limited to 'ui')
-rw-r--r--ui/app/components/pending-tx/confirm-send-ether.js2
-rw-r--r--ui/app/components/pending-tx/confirm-send-token.js2
2 files changed, 2 insertions, 2 deletions
diff --git a/ui/app/components/pending-tx/confirm-send-ether.js b/ui/app/components/pending-tx/confirm-send-ether.js
index bd0f4f71d..22b2670d8 100644
--- a/ui/app/components/pending-tx/confirm-send-ether.js
+++ b/ui/app/components/pending-tx/confirm-send-ether.js
@@ -20,7 +20,7 @@ const {
calcGasTotal,
isBalanceSufficient,
} = require('../send_/send.utils')
-const GasFeeDisplay = require('../send_/send-content/send-gas-row/gas-fee-display/gas-fee-display.component')
+const GasFeeDisplay = require('../send_/send-content/send-gas-row/gas-fee-display/gas-fee-display.component').default
const SenderToRecipient = require('../sender-to-recipient')
const NetworkDisplay = require('../network-display')
const currencyFormatter = require('currency-formatter')
diff --git a/ui/app/components/pending-tx/confirm-send-token.js b/ui/app/components/pending-tx/confirm-send-token.js
index f3985d284..535347cee 100644
--- a/ui/app/components/pending-tx/confirm-send-token.js
+++ b/ui/app/components/pending-tx/confirm-send-token.js
@@ -11,7 +11,7 @@ abiDecoder.addABI(tokenAbi)
const actions = require('../../actions')
const clone = require('clone')
const Identicon = require('../identicon')
-const GasFeeDisplay = require('../send_/send-content/send-gas-row/gas-fee-display/gas-fee-display.component.js')
+const GasFeeDisplay = require('../send_/send-content/send-gas-row/gas-fee-display/gas-fee-display.component.js').default
const NetworkDisplay = require('../network-display')
const ethUtil = require('ethereumjs-util')
const BN = ethUtil.BN