mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-02-23 15:20:55 +01:00
Merge pull request #2374 from BlueWallet/handoff
FIX: Disable handoff for Multisig
This commit is contained in:
commit
ed460c75e4
1 changed files with 1 additions and 1 deletions
|
@ -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"
|
||||
|
|
Loading…
Add table
Reference in a new issue