Skip to content

Commit e3b87ae

Browse files
authored
Removed unused checkpoints telemetry (#2159)
* Removed unused checkpoints telemetry * Changeset
1 parent daf88ba commit e3b87ae

File tree

2 files changed

+6
-10
lines changed

2 files changed

+6
-10
lines changed

.changeset/little-cups-poke.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"claude-dev": patch
3+
---
4+
5+
Removed unused checkpoints telemetry

src/services/telemetry/TelemetryService.ts

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -251,16 +251,7 @@ class PostHogClient {
251251
* @param taskId Unique identifier for the task
252252
* @param action The type of checkpoint action
253253
*/
254-
public captureCheckpointUsage(
255-
taskId: string,
256-
action:
257-
| "shadow_git_initialized"
258-
| "commit_created"
259-
| "branch_created"
260-
| "branch_deleted_active"
261-
| "branch_deleted_inactive"
262-
| "restored",
263-
) {
254+
public captureCheckpointUsage(taskId: string, action: "shadow_git_initialized" | "commit_created" | "restored") {
264255
this.capture({
265256
event: PostHogClient.EVENTS.TASK.CHECKPOINT_USED,
266257
properties: {

0 commit comments

Comments
 (0)