BUG: Only injected providers are cached as last used provider (#733)
* cache every used provider, not only injected one * package json update
This commit is contained in:
parent
94a56d2ebd
commit
727b16481f
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "safe-react",
|
||||
"version": "1.9.1",
|
||||
"version": "1.9.2",
|
||||
"description": "Allowing crypto users manage funds in a safer way",
|
||||
"homepage": "https://github.com/gnosis/safe-react#readme",
|
||||
"bugs": {
|
||||
|
|
|
@ -13,7 +13,6 @@ import selector, { type SelectorProps } from './selector'
|
|||
|
||||
import { onboard } from '~/components/ConnectButton'
|
||||
import { NOTIFICATIONS, showSnackbar } from '~/logic/notifications'
|
||||
import { INJECTED_PROVIDERS } from '~/logic/wallets/getWeb3'
|
||||
import { loadLastUsedProvider } from '~/logic/wallets/store/middlewares/providerWatcher'
|
||||
import { type Info, logComponentStack } from '~/utils/logBoundaries'
|
||||
|
||||
|
@ -38,7 +37,7 @@ class HeaderComponent extends React.PureComponent<Props, State> {
|
|||
|
||||
async componentDidMount() {
|
||||
const lastUsedProvider = await loadLastUsedProvider()
|
||||
if (INJECTED_PROVIDERS.includes(lastUsedProvider.toUpperCase()) || process.env.NODE_ENV === 'test') {
|
||||
if (lastUsedProvider) {
|
||||
const hasSelectedWallet = await onboard.walletSelect(lastUsedProvider)
|
||||
if (hasSelectedWallet) {
|
||||
await onboard.walletCheck()
|
||||
|
|
|
@ -34,13 +34,6 @@ export const WALLET_PROVIDER = {
|
|||
TREZOR: 'TREZOR',
|
||||
}
|
||||
|
||||
export const INJECTED_PROVIDERS = [
|
||||
WALLET_PROVIDER.SAFE,
|
||||
WALLET_PROVIDER.METAMASK,
|
||||
WALLET_PROVIDER.OPERA,
|
||||
WALLET_PROVIDER.DAPPER,
|
||||
]
|
||||
|
||||
export const ETHEREUM_NETWORK_IDS = {
|
||||
// $FlowFixMe
|
||||
1: ETHEREUM_NETWORK.MAINNET,
|
||||
|
|
Loading…
Reference in New Issue