From 01422fdec33474b3d2856a7b163ec70d4ee12956 Mon Sep 17 00:00:00 2001 From: Anthony Laibe Date: Wed, 5 Apr 2023 10:53:58 +0200 Subject: [PATCH] fix(@wallet): hide empty account type fixes #9704 --- ui/app/AppLayouts/Profile/views/wallet/MainView.qml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ui/app/AppLayouts/Profile/views/wallet/MainView.qml b/ui/app/AppLayouts/Profile/views/wallet/MainView.qml index 38738b4de9..eb1758f327 100644 --- a/ui/app/AppLayouts/Profile/views/wallet/MainView.qml +++ b/ui/app/AppLayouts/Profile/views/wallet/MainView.qml @@ -98,6 +98,7 @@ Column { leftPadding: Style.current.padding topPadding: Style.current.halfPadding bottomPadding: Style.current.halfPadding/2 + visible: walletStore.importedAccounts.count > 0 } Repeater { @@ -115,6 +116,7 @@ Column { leftPadding: Style.current.padding topPadding: Style.current.halfPadding bottomPadding: Style.current.halfPadding/2 + visible: walletStore.watchOnlyAccounts.count > 0 } Repeater {