Skip to content

Commit 9557621

Browse files
committed
NUN-6765: Hide member keys when sweep satscard
1 parent 9b6eabc commit 9557621

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nunchuk-transaction/src/main/java/com/nunchuk/android/transaction/components/details/TransactionDetailsViewModel.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -391,7 +391,7 @@ internal class TransactionDetailsViewModel @Inject constructor(
391391
}
392392

393393
private fun loadWallet() {
394-
if (walletId.isEmpty() && initTransaction != null) return
394+
if (walletId.isEmpty() || initTransaction != null) return
395395
viewModelScope.launch {
396396
getWalletUseCase.execute(walletId).collect { wallet ->
397397
val account = accountManager.getAccount()

0 commit comments

Comments
 (0)