Re-enable Contacts row to retest on macOS 27 beta 4

isContactsHiddenPendingAppleFix was flipped true on beta 2 after
CNContactStore.requestAccess returned instant "Access Denied" under
hardened runtime, while Calendar/Reminders/Location worked fine.
Rune just installed beta 4 and wants to retest.
This commit is contained in:
2026-07-21 14:16:03 +02:00
parent 57f407ea50
commit 77cc646ee0
2 changed files with 8 additions and 7 deletions
+4 -3
View File
@@ -32,9 +32,10 @@ import Security
enum PersonalDataTools {
/// Hides the entire Personal Data section. Flip to `false` once all four services work.
static let isHiddenPendingAppleFix = false
/// Hides only the Contacts row. Contacts TCC still broken under hardened runtime on
/// macOS 27 beta 2 while Calendar/Reminders/Location are fixed. Flip to `false` once fixed.
static let isContactsHiddenPendingAppleFix = true
/// Hides only the Contacts row. Was broken under hardened runtime on macOS 27 beta 2
/// (Calendar/Reminders/Location were fine). Re-enabled 2026-07-21 to retest on beta 4
/// flip back to `true` if `CNContactStore.requestAccess` still fails under signed builds.
static let isContactsHiddenPendingAppleFix = false
}
@Observable