From fe9176662a6b0811c007a047cd8e5fc030f74bb6 Mon Sep 17 00:00:00 2001 From: Whymarrh Whitby Date: Wed, 6 May 2020 16:10:24 -0230 Subject: [PATCH] Use named exports in alerts ducks (#8539) --- ui/app/ducks/alerts/index.js | 6 +----- ui/app/ducks/index.js | 2 +- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/ui/app/ducks/alerts/index.js b/ui/app/ducks/alerts/index.js index 3a7cd3919..a28d23ecb 100644 --- a/ui/app/ducks/alerts/index.js +++ b/ui/app/ducks/alerts/index.js @@ -1,5 +1 @@ -import unconnectedAccount from './unconnected-account' - -export default { - unconnectedAccount, -} +export { default as unconnectedAccount } from './unconnected-account' diff --git a/ui/app/ducks/index.js b/ui/app/ducks/index.js index a63fbe56c..680c92ed1 100644 --- a/ui/app/ducks/index.js +++ b/ui/app/ducks/index.js @@ -5,7 +5,7 @@ import sendReducer from './send/send.duck' import appStateReducer from './app/app' import confirmTransactionReducer from './confirm-transaction/confirm-transaction.duck' import gasReducer from './gas/gas.duck' -import alerts from './alerts' +import * as alerts from './alerts' export default combineReducers({ ...alerts,