From afe1ccef3ba011d571d79b46fd216de03c5f0736 Mon Sep 17 00:00:00 2001 From: hannesrudolph Date: Fri, 1 Aug 2025 18:24:42 -0600 Subject: [PATCH] fix: correct import path for QueuedTelemetryClient --- src/activate/registerCommands.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/activate/registerCommands.ts b/src/activate/registerCommands.ts index 4308ff8c7a..bc5310e16f 100644 --- a/src/activate/registerCommands.ts +++ b/src/activate/registerCommands.ts @@ -2,8 +2,8 @@ import * as vscode from "vscode" import delay from "delay" import type { CommandId } from "@roo-code/types" -import { TelemetryService, QueuedTelemetryClient } from "@roo-code/telemetry" -import { CloudService } from "@roo-code/cloud" +import { TelemetryService } from "@roo-code/telemetry" +import { CloudService, QueuedTelemetryClient } from "@roo-code/cloud" import { Package } from "../shared/package" import { getCommand } from "../utils/commands"