From 3ee98f5f59d7b6c65aa923521eb2672626202d1b Mon Sep 17 00:00:00 2001 From: temimedical <105620565+temimedical@users.noreply.github.com> Date: Mon, 9 Mar 2026 06:21:04 -0400 Subject: [PATCH] style(ios): normalize UserDefaults key to lowercase convention --- apps/ios/Sources/Shortcuts/OpenTalkModeIntent.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/ios/Sources/Shortcuts/OpenTalkModeIntent.swift b/apps/ios/Sources/Shortcuts/OpenTalkModeIntent.swift index d48271ae863..d40f0eab29e 100644 --- a/apps/ios/Sources/Shortcuts/OpenTalkModeIntent.swift +++ b/apps/ios/Sources/Shortcuts/OpenTalkModeIntent.swift @@ -21,9 +21,9 @@ struct OpenTalkModeIntent: AppIntent { static let openAppWhenRun: Bool = true /// Shared `UserDefaults` key used to signal a pending Talk Mode navigation. - /// Follows the app's dot-separated camelCase key convention (e.g. "gateway.preferredStableID"). + /// Follows the app's dot-separated lowercase key convention (e.g. "talk.enabled"). /// Referenced by `RootCanvas` via `OpenTalkModeIntent.pendingTalkModeKey`. - static let pendingTalkModeKey = "talk.pendingTalkMode" + static let pendingTalkModeKey = "talk.pending-talk-mode" func perform() async throws -> some IntentResult { // Signal the app to navigate to Talk Mode.