We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fdb92d9 commit c903eb8Copy full SHA for c903eb8
webview-ui/src/utils/TelemetryClient.ts
@@ -42,28 +42,6 @@ class TelemetryClient {
42
}
43
44
45
-
46
- public setPeopleProperty(propertyName: string, value: any) {
47
- if (TelemetryClient.telemetryEnabled) {
48
- try {
49
- posthog.people.set({ [propertyName]: value })
50
- } catch (_error) {
51
- // Silently fail if there's an error setting a property.
52
- }
53
54
55
56
- public getPeopleProperty(propertyName: string): any {
57
58
59
- return posthog.get_property(propertyName)
60
61
- // Silently fail if there's an error getting a property.
62
- return null
63
64
65
66
67
68
69
export const telemetryClient = TelemetryClient.getInstance()
0 commit comments