mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-02-24 07:28:07 +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 (
|
return (
|
||||||
<View style={styles.flex}>
|
<View style={styles.flex}>
|
||||||
<StatusBar barStyle="light-content" backgroundColor={WalletGradient.headerColorFor(wallet.current.type)} />
|
<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
|
<Handoff
|
||||||
title={`Bitcoin Wallet ${wallet.current.getLabel()}`}
|
title={`Bitcoin Wallet ${wallet.current.getLabel()}`}
|
||||||
type="io.bluewallet.bluewallet"
|
type="io.bluewallet.bluewallet"
|
||||||
|
|
Loading…
Add table
Reference in a new issue