From 117fbf7378d5dd7b9fa3ca1f34b4074d17907869 Mon Sep 17 00:00:00 2001 From: Matt Rubens Date: Thu, 8 May 2025 15:01:26 -0400 Subject: [PATCH] Disable Posthog autocapture in the code in addition to in the web console (#3303) --- webview-ui/src/utils/TelemetryClient.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/webview-ui/src/utils/TelemetryClient.ts b/webview-ui/src/utils/TelemetryClient.ts index 450f4da73d..dd8c664754 100644 --- a/webview-ui/src/utils/TelemetryClient.ts +++ b/webview-ui/src/utils/TelemetryClient.ts @@ -17,6 +17,7 @@ class TelemetryClient { loaded: () => posthog.identify(distinctId), capture_pageview: false, capture_pageleave: false, + autocapture: false, }) } else { TelemetryClient.telemetryEnabled = false