Skip to content

Commit 5b06083

Browse files
committed
fix: remove sign via QR button for multisig accounts
1 parent d6fb74b commit 5b06083

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compose/src/commonMain/kotlin/com/blockstream/compose/components/GreenConfirmButton.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ fun GreenConfirmButton(
2828
val isHwWatchOnly by viewModel.isHwWatchOnly.collectAsStateWithLifecycle()
2929

3030
if (isWatchOnly && !isSweep) {
31-
if(!viewModel.account.isLiquid) {
31+
if (viewModel.account.let { !it.isLiquid && !it.isMultisig }) {
3232
GreenButton(
3333
text = stringResource(Res.string.id_sign_transaction_via_qr),
3434
enabled = buttonEnabled,

0 commit comments

Comments
 (0)