We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents de9a508 + 53efc16 commit 2fc02deCopy full SHA for 2fc02de
1 file changed
lib/commands/services/proxy.ts
@@ -1,5 +1,5 @@
1
import { Command } from "commander";
2
-import { sdkForConsole } from "../../sdks.js";
+import { sdkForProject } from "../../sdks.js";
3
import {
4
actionRunner,
5
commandDescriptions,
@@ -14,7 +14,7 @@ let proxyClient: Proxy | null = null;
14
15
const getProxyClient = async (): Promise<Proxy> => {
16
if (!proxyClient) {
17
- const sdkClient = await sdkForConsole();
+ const sdkClient = await sdkForProject();
18
proxyClient = new Proxy(sdkClient);
19
}
20
return proxyClient;
0 commit comments