diff options
author | Thomas Huang <thomas.b.huang@gmail.com> | 2017-08-09 05:15:45 +0800 |
---|---|---|
committer | Thomas Huang <thomas.b.huang@gmail.com> | 2017-08-09 05:15:45 +0800 |
commit | 67e4855b9d79afb3046c6499f4610cb5a8b70837 (patch) | |
tree | fe704a49daf3f230fbf84d6d0b9097153b43a7b6 | |
parent | b8ab1170f83d1adcec8dae251f66a673c5bea9af (diff) | |
download | tangerine-wallet-browser-67e4855b9d79afb3046c6499f4610cb5a8b70837.tar tangerine-wallet-browser-67e4855b9d79afb3046c6499f4610cb5a8b70837.tar.gz tangerine-wallet-browser-67e4855b9d79afb3046c6499f4610cb5a8b70837.tar.bz2 tangerine-wallet-browser-67e4855b9d79afb3046c6499f4610cb5a8b70837.tar.lz tangerine-wallet-browser-67e4855b9d79afb3046c6499f4610cb5a8b70837.tar.xz tangerine-wallet-browser-67e4855b9d79afb3046c6499f4610cb5a8b70837.tar.zst tangerine-wallet-browser-67e4855b9d79afb3046c6499f4610cb5a8b70837.zip |
Updated commonjs require path for redux-logger and redux-thunk modules
-rw-r--r-- | ui/app/store.js | 4 |
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' |