Bug: Accounts/Network are not updated in production build (#625)

This commit is contained in:
Mikhail Mikheev 2020-02-28 17:34:10 +01:00 committed by GitHub
parent d5b64849b4
commit 0037522505
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -1,11 +1,11 @@
// @flow
import type { AnyAction, Store } from 'redux'
import { ADD_PROVIDER, REMOVE_PROVIDER } from '../actions'
import closeSnackbar from '~/logic/notifications/store/actions/closeSnackbar'
import { WALLET_PROVIDER, getProviderInfo, getWeb3 } from '~/logic/wallets/getWeb3'
import { fetchProvider } from '~/logic/wallets/store/actions'
import { ADD_PROVIDER } from '~/logic/wallets/store/actions/addProvider'
import { REMOVE_PROVIDER } from '~/logic/wallets/store/actions/removeProvider'
import { type GlobalState } from '~/store/'
import { loadFromStorage, removeFromStorage, saveToStorage } from '~/utils/storage'