Merge pull request #2374 from BlueWallet/handoff

FIX: Disable handoff for Multisig
This commit is contained in:
GLaDOS 2020-12-16 23:26:05 +00:00 committed by GitHub
commit ed460c75e4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -581,7 +581,7 @@ const WalletTransactions = () => {
return (
<View style={styles.flex}>
<StatusBar barStyle="light-content" backgroundColor={WalletGradient.headerColorFor(wallet.current.type)} />
{wallet.current.chain === Chain.ONCHAIN && isHandOffUseEnabled && (
{wallet.current.chain === Chain.ONCHAIN && wallet.current.type !== MultisigHDWallet.type && isHandOffUseEnabled && (
<Handoff
title={`Bitcoin Wallet ${wallet.current.getLabel()}`}
type="io.bluewallet.bluewallet"