From ea5f1e382300ba0872c356d134d3c5e7555824d8 Mon Sep 17 00:00:00 2001 From: Ryan Lim Date: Fri, 26 Jun 2026 12:20:56 -0700 Subject: [PATCH] Replace device-name placeholder with generic "this device" The status subhead's hardcoded "iPhone 15 Pro" was a prototype leftover. The real per-device name (UIDevice.current.name) is privacy-gated behind a request-only entitlement on iOS 16+, so use a neutral "this device" string instead. --- Sources/CairnIOSCore/UI/StatusScreen.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/CairnIOSCore/UI/StatusScreen.swift b/Sources/CairnIOSCore/UI/StatusScreen.swift index 01f2616..6fe7993 100644 --- a/Sources/CairnIOSCore/UI/StatusScreen.swift +++ b/Sources/CairnIOSCore/UI/StatusScreen.swift @@ -551,7 +551,7 @@ public struct StatusScreen: View { private var reconcilingSubhead: AttributedString { var s = AttributedString("reconciling ") s.foregroundColor = t.textMuted - var device = AttributedString("iPhone 15 Pro") + var device = AttributedString("this device") device.foregroundColor = t.textBody var middle = AttributedString(" against ") middle.foregroundColor = t.textMuted