From d2fb07a72976a9c89882a6d2506374f00bef5dbd Mon Sep 17 00:00:00 2001 From: Zack Porter <121693134+zaporter-work@users.noreply.github.com> Date: Tue, 15 Oct 2024 12:30:31 -0400 Subject: [PATCH] APP-6639 - DoCommand from control tab for services no longer works (regression) (#390) --- src/services/generic/client.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/services/generic/client.ts b/src/services/generic/client.ts index 2ceec0891..d5ee1288a 100644 --- a/src/services/generic/client.ts +++ b/src/services/generic/client.ts @@ -1,6 +1,6 @@ import type { JsonValue, Struct } from '@bufbuild/protobuf'; import type { CallOptions, PromiseClient } from '@connectrpc/connect'; -import { GenericService } from '../../gen/component/generic/v1/generic_connect'; +import { GenericService } from '../../gen/service/generic/v1/generic_connect'; import { RobotClient } from '../../robot'; import type { Options } from '../../types'; import { doCommandFromClient } from '../../utils';