Skip to content

Commit

Permalink
mix with common properties
Browse files Browse the repository at this point in the history
  • Loading branch information
mustard-mh committed Jul 6, 2023
1 parent b3b2554 commit a815641
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gitpod-shared/src/telemetryService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ export class TelemetryService extends Disposable implements ITelemetryService {
const idx = eventName.indexOf('/');
eventName = eventName.substring(idx + 1);

const properties = data ?? {};
const properties = mixin(data ?? {}, commonProperties);;

this.getSegmentAnalyticsClient(gitpodHost, segmentKey)?.track({
userId,
Expand Down

0 comments on commit a815641

Please sign in to comment.