From de39ab668732af64f499b7a249d5e5fa2245bd6d Mon Sep 17 00:00:00 2001 From: jack Date: Thu, 21 Aug 2025 01:18:44 +0200 Subject: [PATCH] UI: stop bolding location subtitle names; only bold the channel label when count > 0 --- 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 8977654b..f129ba0e 100644 --- a/bitchat/Views/LocationChannelsSheet.swift +++ b/bitchat/Views/LocationChannelsSheet.swift @@ -106,7 +106,7 @@ struct LocationChannelsSheet: View { let namePart = nameBase.map { formattedNamePrefix(for: channel.level) + $0 } let subtitlePrefix = "#\(channel.geohash) • \(coverage)" let highlight = viewModel.geohashParticipantCount(for: channel.geohash) > 0 - channelRow(title: geohashTitleWithCount(for: channel), subtitlePrefix: subtitlePrefix, subtitleName: namePart, subtitleNameBold: highlight, isSelected: isSelected(channel), titleBold: highlight) { + channelRow(title: geohashTitleWithCount(for: channel), subtitlePrefix: subtitlePrefix, subtitleName: namePart, isSelected: isSelected(channel), titleBold: highlight) { manager.select(ChannelID.location(channel)) isPresented = false }