diff --git a/packages/dashboard/src/routes/__tests__/workflow-design-route.test.ts b/packages/dashboard/src/routes/__tests__/workflow-design-route.test.ts index e763820042..4558d0e6f2 100644 --- a/packages/dashboard/src/routes/__tests__/workflow-design-route.test.ts +++ b/packages/dashboard/src/routes/__tests__/workflow-design-route.test.ts @@ -26,7 +26,6 @@ import { request } from "../../test-request.js"; /** Captures the prompt the route fed the agent and returns canned `text`. */ function makeFakeAgent(text: string) { const captured: { systemPrompt?: string; userPrompt?: string } = {}; - // eslint-disable-next-line @typescript-eslint/no-explicit-any const factory: any = async (opts: any) => { captured.systemPrompt = opts.systemPrompt; let textListener: ((delta: string) => void) | undefined; @@ -49,7 +48,6 @@ function makeFakeAgent(text: string) { * can assert the route releases the session even when the model turn throws. */ function makeRejectingAgent() { const state = { disposed: false }; - // eslint-disable-next-line @typescript-eslint/no-explicit-any const factory: any = async () => { const session = { on(_event: "text", _listener: (delta: string) => void) {}, diff --git a/packages/engine/src/pr-nodes.ts b/packages/engine/src/pr-nodes.ts index a9c3e04da7..40cbedb213 100644 --- a/packages/engine/src/pr-nodes.ts +++ b/packages/engine/src/pr-nodes.ts @@ -65,7 +65,7 @@ function resolveActivePrEntity(store: PrNodeStore, task: TaskDetail): PrEntity | } /** Identity of the PR an entity is created for, resolved from the task + node. */ -export interface PrSourceDescriptor extends PrEntityCreateInput {} +export type PrSourceDescriptor = PrEntityCreateInput; /** Input for the injected `createPr` callback (the dashboard GitHubClient wrapper). */ export interface PrCreateCallInput {