From abeab5ae94ca9d6aca4d243cbc2658531bb99d74 Mon Sep 17 00:00:00 2001 From: jack Date: Sat, 13 Sep 2025 00:52:01 +0200 Subject: [PATCH] Location notes: render note bodies with monospaced font in notes list --- bitchat/Views/LocationNotesView.swift | 1 + 1 file changed, 1 insertion(+) diff --git a/bitchat/Views/LocationNotesView.swift b/bitchat/Views/LocationNotesView.swift index d32dffd3..56e7b880 100644 --- a/bitchat/Views/LocationNotesView.swift +++ b/bitchat/Views/LocationNotesView.swift @@ -73,6 +73,7 @@ struct LocationNotesView: View { .foregroundColor(secondaryTextColor.opacity(0.8)) } Text(note.content) + .font(.system(size: 14, design: .monospaced)) .fixedSize(horizontal: false, vertical: true) } .padding(.horizontal, 12)