From 01f198483b3d357d1cdd52ad56cd5cc31b1bae89 Mon Sep 17 00:00:00 2001 From: gsxdsm Date: Fri, 26 Jun 2026 09:09:36 -0700 Subject: [PATCH] fix(lint): drop unused imports in routes.ts after legacy workflow-step route removal WorkflowStepTemplate and resolvePlanningSettingsModel were only used by the deleted /api/workflow-steps CRUD + :id/refine routes (U5); the imports survived the merge as unused. Remove them. No behavior change. Co-Authored-By: Claude Opus 4.8 (1M context) --- packages/dashboard/src/routes.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/packages/dashboard/src/routes.ts b/packages/dashboard/src/routes.ts index afd4f821c6..8e26fa3730 100644 --- a/packages/dashboard/src/routes.ts +++ b/packages/dashboard/src/routes.ts @@ -13,7 +13,7 @@ import * as nodeFs from "node:fs"; import os from "node:os"; import v8 from "node:v8"; -import type { TaskStore, ScheduleType, ActivityEventType, ModelPreset, RoutineTriggerType, WorkflowStepTemplate, McpServerDefinition } from "@fusion/core"; +import type { TaskStore, ScheduleType, ActivityEventType, ModelPreset, RoutineTriggerType, McpServerDefinition } from "@fusion/core"; import { type Task, type PiExtensionEntry, @@ -30,7 +30,6 @@ import { isWebhookTrigger, listAgentMemoryFiles, readAgentMemoryFile, - resolvePlanningSettingsModel, resolvePluginEntryPath, resolveExecutionSettingsModel, resolveTitleSummarizerSettingsModel,