We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6fb74b commit 5b06083Copy full SHA for 5b06083
compose/src/commonMain/kotlin/com/blockstream/compose/components/GreenConfirmButton.kt
@@ -28,7 +28,7 @@ fun GreenConfirmButton(
28
val isHwWatchOnly by viewModel.isHwWatchOnly.collectAsStateWithLifecycle()
29
30
if (isWatchOnly && !isSweep) {
31
- if(!viewModel.account.isLiquid) {
+ if (viewModel.account.let { !it.isLiquid && !it.isMultisig }) {
32
GreenButton(
33
text = stringResource(Res.string.id_sign_transaction_via_qr),
34
enabled = buttonEnabled,
0 commit comments