Skip to content

Commit f5194b8

Browse files
committed
Update signal handlers in DesktopWallets.qml to have explicit parameters
1 parent 8a17c3d commit f5194b8

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

qml/pages/wallet/DesktopWallets.qml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,9 @@ Page {
141141
Activity {
142142
}
143143
Send {
144-
onTransactionPrepared: root.sendTransaction(multipleRecipientsEnabled)
144+
onTransactionPrepared: (multipleRecipientsEnabled) => {
145+
root.sendTransaction(multipleRecipientsEnabled)
146+
}
145147
}
146148
RequestPayment {
147149
}

0 commit comments

Comments
 (0)