aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/app.js
diff options
context:
space:
mode:
Diffstat (limited to 'ui/app/app.js')
-rw-r--r--ui/app/app.js9
1 files changed, 7 insertions, 2 deletions
diff --git a/ui/app/app.js b/ui/app/app.js
index 92fc5e697..08d24d86c 100644
--- a/ui/app/app.js
+++ b/ui/app/app.js
@@ -10,7 +10,7 @@ const NewKeyChainScreen = require('./new-keychain')
// accounts
const MainContainer = require('./main-container')
const SendTransactionScreen = require('./send')
-const SendTransactionScreen2 = require('./send-v2.js')
+const SendTransactionScreen2 = require('./components/send/send-v2-container')
const SendTokenScreen = require('./components/send-token')
const ConfirmTxScreen = require('./conf-tx')
// notice
@@ -356,7 +356,12 @@ App.prototype.renderPrimary = function () {
case 'sendToken':
log.debug('rendering send token screen')
- return h(SendTokenScreen, {key: 'sendToken'})
+
+ const SendTokenComponentToRender = checkFeatureToggle('send-v2')
+ ? SendTransactionScreen2
+ : SendTokenScreen
+
+ return h(SendTokenComponentToRender, {key: 'sendToken'})
case 'newKeychain':
log.debug('rendering new keychain screen')