Commit ceec3f0e authored by Vignesh Mohankumar's avatar Vignesh Mohankumar Committed by GitHub

feat: remove Tally Ho specific rendering (#4023)

feat: remove tally
parent 904d1835
...@@ -12,7 +12,6 @@ import { updateWalletError } from 'state/wallet/reducer' ...@@ -12,7 +12,6 @@ import { updateWalletError } from 'state/wallet/reducer'
import styled from 'styled-components/macro' import styled from 'styled-components/macro'
import MetamaskIcon from '../../assets/images/metamask.png' import MetamaskIcon from '../../assets/images/metamask.png'
import TallyIcon from '../../assets/images/tally.png'
import { ReactComponent as Close } from '../../assets/images/x.svg' import { ReactComponent as Close } from '../../assets/images/x.svg'
import { fortmatic, getWalletForConnector, injected } from '../../connectors' import { fortmatic, getWalletForConnector, injected } from '../../connectors'
import { SUPPORTED_WALLETS } from '../../constants/wallet' import { SUPPORTED_WALLETS } from '../../constants/wallet'
...@@ -185,7 +184,6 @@ export default function WalletModal({ ...@@ -185,7 +184,6 @@ export default function WalletModal({
// get wallets user can switch too, depending on device/browser // get wallets user can switch too, depending on device/browser
function getOptions() { function getOptions() {
const isMetaMask = !!window.ethereum?.isMetaMask const isMetaMask = !!window.ethereum?.isMetaMask
const isTally = !!window.ethereum?.isTally
const isCoinbaseWallet = !!window.ethereum?.isCoinbaseWallet const isCoinbaseWallet = !!window.ethereum?.isCoinbaseWallet
return Object.keys(SUPPORTED_WALLETS).map((key) => { return Object.keys(SUPPORTED_WALLETS).map((key) => {
const option = SUPPORTED_WALLETS[key] const option = SUPPORTED_WALLETS[key]
...@@ -249,24 +247,6 @@ export default function WalletModal({ ...@@ -249,24 +247,6 @@ export default function WalletModal({
// likewise for generic // likewise for generic
else if (option.name === 'Injected' && isMetaMask) { else if (option.name === 'Injected' && isMetaMask) {
return null return null
} else if (option.name === 'Injected' && isTally) {
return (
<Option
id={`connect-${key}`}
key={key}
onClick={() => {
option.connector === connector
? setWalletView(WALLET_VIEWS.ACCOUNT)
: !option.href && option.connector && tryActivation(option.connector)
}}
color={'#E8831D'}
header={<Trans>Tally</Trans>}
isActive={option.connector === connector}
subheader={null}
link={null}
icon={TallyIcon}
/>
)
} }
} }
......
...@@ -13,7 +13,6 @@ interface Window { ...@@ -13,7 +13,6 @@ interface Window {
// value that is populated and returns true by the Coinbase Wallet mobile dapp browser // value that is populated and returns true by the Coinbase Wallet mobile dapp browser
isCoinbaseWallet?: true isCoinbaseWallet?: true
isMetaMask?: true isMetaMask?: true
isTally?: false
autoRefreshOnNetworkChange?: boolean autoRefreshOnNetworkChange?: boolean
} }
web3?: Record<string, unknown> web3?: Record<string, unknown>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment