fix(@desktop/wallet): When the send modal is launched from a saved address, the name of the saved address is not displayed in the Send modal

This commit is contained in:
Khushboo-dev-cpp 2025-02-10 11:17:41 +01:00 committed by Khushboo-dev-cpp
parent 7f782cf9a4
commit edbe51b13e

View File

@ -168,7 +168,7 @@ Loader {
readonly property var accountsSelectedEntry: ModelEntry { readonly property var accountsSelectedEntry: ModelEntry {
sourceModel: root.model sourceModel: root.model
key: "address" key: "address"
value: root.selectedRecipientAddress value: root.selectedRecipientAddress.toLowerCase()
} }
readonly property var modelData: accountsSelectedEntry.available ? accountsSelectedEntry.item : null readonly property var modelData: accountsSelectedEntry.available ? accountsSelectedEntry.item : null