From 9d5105a8bf2e07ddc96be8b3587aea01583d8890 Mon Sep 17 00:00:00 2001 From: jack Date: Fri, 22 Aug 2025 13:02:34 +0200 Subject: [PATCH] Geohash list: gate empty/render using visibleGeohashPeople() so header count and list visibility are consistent --- bitchat/Views/GeohashPeopleList.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bitchat/Views/GeohashPeopleList.swift b/bitchat/Views/GeohashPeopleList.swift index e5c5065c..2227a78b 100644 --- a/bitchat/Views/GeohashPeopleList.swift +++ b/bitchat/Views/GeohashPeopleList.swift @@ -10,7 +10,7 @@ struct GeohashPeopleList: View { var body: some View { Group { - if viewModel.geohashPeople.isEmpty { + if viewModel.visibleGeohashPeople().isEmpty { Text("nobody around...") .font(.system(size: 14, design: .monospaced)) .foregroundColor(secondaryTextColor)