From b24d949ca44a2a0a8414625ebd58a6882a3fd81c Mon Sep 17 00:00:00 2001 From: frankiebee Date: Mon, 26 Feb 2018 10:55:30 -0800 Subject: fix feature flags being undefined --- ui/index.js | 1 + 1 file changed, 1 insertion(+) (limited to 'ui') diff --git a/ui/index.js b/ui/index.js index bc3676c1f..fdb2f23e0 100644 --- a/ui/index.js +++ b/ui/index.js @@ -25,6 +25,7 @@ function launchMetamaskUi (opts, cb) { function startApp (metamaskState, accountManager, opts) { // parse opts + if (!metamaskState.featureFlags) metamaskState.featureFlags = {} const store = configureStore({ // metamaskState represents the cross-tab state -- cgit