From 3e049673097d6bcf917512208ed85d55ffbd55ce Mon Sep 17 00:00:00 2001 From: Roman Chornii Date: Tue, 25 Jun 2024 21:17:48 +0300 Subject: [PATCH] chore(Wallet.RootStore): Fixed qml runtime error. (#15323) Quickfix --- ui/app/AppLayouts/Wallet/stores/RootStore.qml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ui/app/AppLayouts/Wallet/stores/RootStore.qml b/ui/app/AppLayouts/Wallet/stores/RootStore.qml index f89c2744e1..dbd6301838 100644 --- a/ui/app/AppLayouts/Wallet/stores/RootStore.qml +++ b/ui/app/AppLayouts/Wallet/stores/RootStore.qml @@ -113,6 +113,7 @@ QtObject { id: d readonly property var mainModuleInst: mainModule + readonly property var walletSectionSavedAddressesInst: walletSectionSavedAddresses readonly property Connections walletSectionSavedAddressesConnections: Connections{ target: walletSectionSavedAddresses @@ -284,7 +285,7 @@ QtObject { isTest: false, } - const jsonObj = root.walletSectionSavedAddressesInst.getSavedAddressAsJson(address) + const jsonObj = d.walletSectionSavedAddressesInst.getSavedAddressAsJson(address) try { return JSON.parse(jsonObj)