Skip to content

Commit 62ef303

Browse files
feat(@desktop/wallet): Fix issue of blank screen when landing on wallet
1 parent b58faec commit 62ef303

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

ui/app/AppLayouts/Wallet/controls/SavedAddressesDelegate.qml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -215,6 +215,9 @@ StatusListItem {
215215
WalletLayout.RightPanelSelection.Activity,
216216
{savedAddress: menu.address})
217217
}
218+
// TODO: https://github.com/status-im/status-desktop/issues/19410
219+
// ENabled after crash is solved
220+
enabled: false
218221
}
219222

220223
StatusMenuSeparator {}

ui/app/AppLayouts/Wallet/views/RightTabView.qml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -266,8 +266,6 @@ RightTabBaseView {
266266
}
267267
onCurrentIndexChanged: {
268268
RootStore.setCurrentViewedHoldingType(walletTabBar.currentIndex === 1 ? Constants.TokenType.ERC721 : Constants.TokenType.ERC20)
269-
270-
mainViewLoader.sourceComponent = d.walletViewsMap[walletTabBar.currentIndex]
271269
}
272270
}
273271
StatusFlatButton {
@@ -286,6 +284,7 @@ RightTabBaseView {
286284
id: mainViewLoader
287285
Layout.fillWidth: true
288286
Layout.fillHeight: true
287+
sourceComponent: d.walletViewsMap[walletTabBar.currentIndex]
289288

290289
Component {
291290
id: assetsView

0 commit comments

Comments
 (0)