fix(@wallet): hide empty account type

fixes #9704
This commit is contained in:
Anthony Laibe 2023-04-05 10:53:58 +02:00 committed by Anthony Laibe
parent ca1a14fa9a
commit 01422fdec3
1 changed files with 2 additions and 0 deletions

View File

@ -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 {