diff --git a/leanring-buddy/ClickyAnalytics.swift b/leanring-buddy/ClickyAnalytics.swift index 29e26138..bc85d493 100644 --- a/leanring-buddy/ClickyAnalytics.swift +++ b/leanring-buddy/ClickyAnalytics.swift @@ -82,7 +82,6 @@ enum ClickyAnalytics { /// Transcription completed and the user's message is being sent to the AI. static func trackUserMessageSent(transcript: String) { PostHogSDK.shared.capture("user_message_sent", properties: [ - "transcript": transcript, "character_count": transcript.count ]) } @@ -90,7 +89,6 @@ enum ClickyAnalytics { /// Claude responded and the response is being spoken via TTS. static func trackAIResponseReceived(response: String) { PostHogSDK.shared.capture("ai_response_received", properties: [ - "response": response, "character_count": response.count ]) }