Compare commits

...

2 Commits

Author SHA1 Message Date
Trevor Hudson b8b0279e04 changeset 2025-05-07 11:26:20 -07:00
Trevor Hudson 69fd18c5e4 disable autocatpure 2025-05-07 11:25:48 -07:00
3 changed files with 6 additions and 9 deletions
+5
View File
@@ -0,0 +1,5 @@
---
"claude-dev": patch
---
disable autocapture
-9
View File
@@ -74,15 +74,6 @@ const AppContent = () => {
useEvent("message", handleMessage)
// useEffect(() => {
// if (telemetrySetting === "enabled") {
// posthog.identify(vscMachineId)
// posthog.opt_in_capturing()
// } else {
// posthog.opt_out_capturing()
// }
// }, [telemetrySetting, vscMachineId])
useEffect(() => {
if (shouldShowAnnouncement) {
setShowAnnouncement(true)
+1
View File
@@ -9,6 +9,7 @@ import posthog from "posthog-js"
posthog.init(posthogConfig.apiKey, {
api_host: posthogConfig.host,
autocapture: false,
})
export function Providers({ children }: { children: ReactNode }) {