UI: remove leading '#' from mesh title in location sheet

This commit is contained in:
jack
2025-08-21 00:51:18 +02:00
parent 68c61476d8
commit 28c87a41c1
+1 -1
View File
@@ -252,7 +252,7 @@ struct LocationChannelsSheet: View {
return acc
}
let noun = meshCount == 1 ? "person" : "people"
return "#mesh [\(meshCount) \(noun)]"
return "mesh [\(meshCount) \(noun)]"
}
private func geohashTitleWithCount(for channel: GeohashChannel) -> String {