From 28c87a41c1158eb2ca17c7e00a756c9d00618954 Mon Sep 17 00:00:00 2001 From: jack Date: Thu, 21 Aug 2025 00:51:18 +0200 Subject: [PATCH] UI: remove leading '#' from mesh title in location sheet --- bitchat/Views/LocationChannelsSheet.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bitchat/Views/LocationChannelsSheet.swift b/bitchat/Views/LocationChannelsSheet.swift index 80a9c0e4..359af569 100644 --- a/bitchat/Views/LocationChannelsSheet.swift +++ b/bitchat/Views/LocationChannelsSheet.swift @@ -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 {