Skip to content

Commit

Permalink
fix(@wallet): hide empty account type
Browse files Browse the repository at this point in the history
fixes #9704
  • Loading branch information
alaibe committed Apr 5, 2023
1 parent ca1a14f commit 01422fd
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions ui/app/AppLayouts/Profile/views/wallet/MainView.qml
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@ Column {
leftPadding: Style.current.padding
topPadding: Style.current.halfPadding
bottomPadding: Style.current.halfPadding/2
visible: walletStore.importedAccounts.count > 0
}

Repeater {
Expand All @@ -115,6 +116,7 @@ Column {
leftPadding: Style.current.padding
topPadding: Style.current.halfPadding
bottomPadding: Style.current.halfPadding/2
visible: walletStore.watchOnlyAccounts.count > 0
}

Repeater {
Expand Down

0 comments on commit 01422fd

Please # to comment.