Skip to content

Commit ee2084d

Browse files
committed
feat(dapp-browser)_: fix build
fixes #19151
1 parent f9ac48b commit ee2084d

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

ui/app/AppLayouts/Browser/BrowserLayout.qml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -355,7 +355,7 @@ StatusSectionLayout {
355355
y: (Math.abs(browserHeader.mapFromGlobal(headerPoint).y) +
356356
browserHeader.anchors.topMargin + Theme.halfPadding)
357357
onSendTriggered: (address) => root.sendToRecipientRequested(address)
358-
onAccountChanged: (newAddress) => connectorBridge.manager.changeAccount(newAddress)
358+
onAccountChanged: (newAddress) => connectorBridge.connectorManager.changeAccount(newAddress)
359359
onReload: {
360360
for (let i = 0; i < tabs.count; ++i){
361361
tabs.getTab(i).reload();
@@ -448,7 +448,7 @@ StatusSectionLayout {
448448
bookmarksStore: root.bookmarksStore
449449
downloadsStore: root.downloadsStore
450450
currentWebView: _internal.currentWebView
451-
webChannel: connectorBridge.webChannel
451+
webChannel: connectorBridge.channel
452452
findBarComp: findBar
453453
favMenu: favoriteMenu
454454
addFavModal: addFavoriteModal

ui/app/AppLayouts/Browser/provider/qml/ConnectorBridge.qml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,6 @@ QtObject {
2323
required property var connectorController
2424
property string httpUserAgent: "" // Custom user agent for web profiles
2525

26-
readonly property alias webChannel: channel
27-
readonly property alias manager: connectorManager
28-
2926
property alias dappUrl: connectorManager.dappUrl
3027
property alias dappOrigin: connectorManager.dappOrigin
3128
property alias dappName: connectorManager.dappName

0 commit comments

Comments
 (0)