From c97de7a2f815ab4ff71774dd0397dbfe0cb31fc9 Mon Sep 17 00:00:00 2001 From: jack Date: Sat, 13 Sep 2025 01:07:32 +0200 Subject: [PATCH] Location notes: remove per-note relative timestamp from sheet (no seconds display) --- bitchat/Views/LocationNotesView.swift | 3 --- 1 file changed, 3 deletions(-) diff --git a/bitchat/Views/LocationNotesView.swift b/bitchat/Views/LocationNotesView.swift index bc9edba4..07e5bf50 100644 --- a/bitchat/Views/LocationNotesView.swift +++ b/bitchat/Views/LocationNotesView.swift @@ -72,9 +72,6 @@ struct LocationNotesView: View { Text(note.displayName) .font(.system(size: 12, weight: .semibold, design: .monospaced)) .foregroundColor(secondaryTextColor) - Text(note.createdAt, style: .relative) - .font(.system(size: 11, design: .monospaced)) - .foregroundColor(secondaryTextColor.opacity(0.8)) } Text(note.content) .font(.system(size: 14, design: .monospaced))