diff --git a/ui/StatusQ/src/StatusQ/Components/WebEngineLoader.qml b/ui/StatusQ/src/StatusQ/Components/WebEngineLoader.qml index a7fe2b6a91..9c9c76c20c 100644 --- a/ui/StatusQ/src/StatusQ/Components/WebEngineLoader.qml +++ b/ui/StatusQ/src/StatusQ/Components/WebEngineLoader.qml @@ -23,6 +23,7 @@ Item { required property url url required property var webChannelObjects + property string profileName: "Default" // Used to control the loading of the web engine property bool active: false @@ -48,6 +49,7 @@ Item { url: root.url webChannel: statusChannel + profile.storageName: root.profileName onLoadingChanged: function(loadRequest) { switch(loadRequest.status) { diff --git a/ui/app/AppLayouts/Wallet/services/dapps/WalletConnectSDK.qml b/ui/app/AppLayouts/Wallet/services/dapps/WalletConnectSDK.qml index 149bcd5539..601f2f8569 100644 --- a/ui/app/AppLayouts/Wallet/services/dapps/WalletConnectSDK.qml +++ b/ui/app/AppLayouts/Wallet/services/dapps/WalletConnectSDK.qml @@ -17,6 +17,7 @@ WalletConnectSDKBase { // Enable the WalletConnect SDK property alias enableSdk: loader.active + property alias userUID: loader.profileName readonly property alias url: loader.url implicitWidth: 1 diff --git a/ui/app/mainui/AppMain.qml b/ui/app/mainui/AppMain.qml index 0e22bf0da1..6d10008ab2 100644 --- a/ui/app/mainui/AppMain.qml +++ b/ui/app/mainui/AppMain.qml @@ -2162,7 +2162,7 @@ Item { wcSDK: WalletConnectSDK { enableSdk: WalletStore.RootStore.walletSectionInst.walletReady - + userUID: appMain.rootStore.profileSectionStore.profileStore.pubkey projectId: WalletStore.RootStore.appSettings.walletConnectProjectID } store: DAppsStore {