From a2bf5633dd3b13eaee21f35249a39fa9a775f182 Mon Sep 17 00:00:00 2001 From: Garth Vander Houwen Date: Mon, 28 Jul 2025 10:09:16 -0700 Subject: [PATCH] Make details on uploaded files caption2 --- Meshtastic/Views/Nodes/Helpers/Map/MapDataFiles.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Meshtastic/Views/Nodes/Helpers/Map/MapDataFiles.swift b/Meshtastic/Views/Nodes/Helpers/Map/MapDataFiles.swift index be8f56fe..71df476d 100644 --- a/Meshtastic/Views/Nodes/Helpers/Map/MapDataFiles.swift +++ b/Meshtastic/Views/Nodes/Helpers/Map/MapDataFiles.swift @@ -200,11 +200,11 @@ struct MapDataFileRow: View { .cornerRadius(4) Text("\(file.overlayCount) \(file.overlayCount > 1 ? "features".localized : "feature".localized)") - .font(.caption) + .font(.caption2) .foregroundColor(.secondary) Spacer() Text(file.uploadDate.formatted()) - .font(.caption) + .font(.caption2) .foregroundColor(.secondary) } }