when extension is activated we are missing properties

This commit is contained in:
nighttrek
2025-07-16 00:05:49 -07:00
parent 0224126949
commit ced1845bbb
@@ -215,7 +215,11 @@ class TelemetryService {
if (this.telemetryEnabled) {
this.client.identify({ distinctId: this.distinctId })
this.client.capture({ distinctId: this.distinctId, event: TelemetryService.EVENTS.USER.EXTENSION_ACTIVATED })
this.client.capture({
distinctId: this.distinctId,
event: TelemetryService.EVENTS.USER.EXTENSION_ACTIVATED,
properties: this.addProperties({}),
})
}
}