From e69783889938cfbbbf30e2649724cd197783cf1c Mon Sep 17 00:00:00 2001 From: BrianWang1990 Date: Fri, 3 Apr 2026 17:38:00 +0800 Subject: [PATCH] style: fix import order in server-cron.ts Move plugin-sdk import after cron/* imports per alphabetical convention. --- src/gateway/server-cron.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gateway/server-cron.ts b/src/gateway/server-cron.ts index 3d74f18aefb..d75783b1588 100644 --- a/src/gateway/server-cron.ts +++ b/src/gateway/server-cron.ts @@ -10,8 +10,8 @@ import { import { resolveStorePath } from "../config/sessions/paths.js"; import { resolveFailureDestination, sendFailureNotificationAnnounce } from "../cron/delivery.js"; import { runCronIsolatedAgentTurn } from "../cron/isolated-agent.js"; -import { closeTrackedBrowserTabsForSessions } from "../plugin-sdk/browser-maintenance.js"; import { resolveDeliveryTarget } from "../cron/isolated-agent/delivery-target.js"; +import { closeTrackedBrowserTabsForSessions } from "../plugin-sdk/browser-maintenance.js"; import { appendCronRunLog, resolveCronRunLogPath,