style(ios): normalize UserDefaults key to lowercase convention

This commit is contained in:
temimedical 2026-03-09 06:21:04 -04:00 committed by Eulices Lopez
parent 83b4b702de
commit 3ee98f5f59

View File

@ -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.