Skip to content

Commit

Permalink
fix(telos-wallet): fix telos disconnect button
Browse files Browse the repository at this point in the history
  • Loading branch information
envin3 committed Jan 8, 2024
1 parent ddc1a3f commit 24bba5d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/store/wallets/telos/index.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { toastr } from 'react-redux-toastr'
import { getWeb3Settings } from 'react-web3-settings'

import { WALLET_TELOS_CONNECTED } from '../../../constants'
import { WALLET_TELOS_CONNECTED, WALLET_TELOS_DISCONNECTED } from '../../../constants'
import EosConnect from '../../../lib/eosConnect/'
import settings from '../../../settings'
import { getWeb3ModalTheme } from '../../../theme/web3-modal'
Expand Down Expand Up @@ -47,7 +47,7 @@ const connectWithTelosWallet = (_dispatch) => {

const disconnectFromTelosWallet = (_dispatch) => {
_dispatch({
type: WALLET_TELOS_CONNECTED,
type: WALLET_TELOS_DISCONNECTED,
})
}

Expand Down

0 comments on commit 24bba5d

Please sign in to comment.