fix incorrectly displayed empty state in home screen

pull/891/head
Ryan ZHAO 11 months ago
parent aa5d7f14d3
commit 648c3e658e

@ -497,19 +497,18 @@ final class HomeVC: BaseVC, LibSessionRespondingViewController, UITableViewDataS
// Show the empty state if there is no data
if self.flow == .register {
accountCreatedView.isHidden = (
!updatedData.isEmpty &&
updatedData.contains(where: { !$0.elements.isEmpty })
)
accountCreatedView.isHidden = false
emptyStateLogoView.isHidden = true
} else {
accountCreatedView.isHidden = true
emptyStateLogoView.isHidden = false
emptyStateView.isHidden = (
!updatedData.isEmpty &&
updatedData.contains(where: { !$0.elements.isEmpty })
)
}
emptyStateStackView.isHidden = (
!updatedData.isEmpty &&
updatedData.contains(where: { !$0.elements.isEmpty })
)
CATransaction.begin()
CATransaction.setCompletionBlock { [weak self] in
// Complete page loading

Loading…
Cancel
Save