diff --git a/ui/imports/shared/popups/send/SendModal.qml b/ui/imports/shared/popups/send/SendModal.qml index 9f42b8a656..9bf158f502 100644 --- a/ui/imports/shared/popups/send/SendModal.qml +++ b/ui/imports/shared/popups/send/SendModal.qml @@ -63,10 +63,8 @@ StatusDialog { standardButtons: StandardButton.Ok } - readonly property var selectedAccount: { - selectedSenderAccountEntry.value // Item changed is not triggered when the value is changed - return selectedSenderAccountEntry.item ?? SQUtils.ModelUtils.get(store.accounts, 0) - } + // In case selected address is incorrect take first account from the list + readonly property var selectedAccount: selectedSenderAccountEntry.item ?? SQUtils.ModelUtils.get(store.accounts, 0) property var sendTransaction: function() { d.isPendingTx = true