aboutsummaryrefslogtreecommitdiffstats
path: root/ui
diff options
context:
space:
mode:
authorThomas Huang <thomas.b.huang@gmail.com>2017-08-09 05:15:45 +0800
committerThomas Huang <thomas.b.huang@gmail.com>2017-08-09 05:15:45 +0800
commit67e4855b9d79afb3046c6499f4610cb5a8b70837 (patch)
treefe704a49daf3f230fbf84d6d0b9097153b43a7b6 /ui
parentb8ab1170f83d1adcec8dae251f66a673c5bea9af (diff)
downloadtangerine-wallet-browser-67e4855b9d79afb3046c6499f4610cb5a8b70837.tar.gz
tangerine-wallet-browser-67e4855b9d79afb3046c6499f4610cb5a8b70837.tar.zst
tangerine-wallet-browser-67e4855b9d79afb3046c6499f4610cb5a8b70837.zip
Updated commonjs require path for redux-logger and redux-thunk modules
Diffstat (limited to 'ui')
-rw-r--r--ui/app/store.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/app/store.js b/ui/app/store.js
index ba9e58b49..3bafdee11 100644
--- a/ui/app/store.js
+++ b/ui/app/store.js
@@ -1,8 +1,8 @@
const createStore = require('redux').createStore
const applyMiddleware = require('redux').applyMiddleware
-const thunkMiddleware = require('redux-thunk')
+const thunkMiddleware = require('redux-thunk').default
const rootReducer = require('./reducers')
-const createLogger = require('redux-logger')
+const createLogger = require('redux-logger').createLogger
global.METAMASK_DEBUG = 'GULP_METAMASK_DEBUG'